Vue報錯Syntax Error:TypeError: this.getOptions is not a function的解決方法
一、簡單介紹
Vue 開發的一些知識整理,方便後期遇到類似的問題,能夠及時查閱使用。
本節介紹,Vue 運行時報錯 Syntax Error: TypeError: this.getOptions is not a function 的處理,如果有不足之處,歡迎指出,或者你有更好的方法,歡迎留言。
二、報錯現象
ERROR Failed to compile with 1 error 上午10:39:05
error in ./src/views/Login.vue?vue&type=style&index=0&lang=scss&
Syntax Error: TypeError: this.getOptions is not a function
@ ./node_modules/vue-style-loader??ref–8-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref–8-oneOf-1-1!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/post
css-loader/src??ref–8-oneOf-1-2!./node_modules/sass-loader/dist/cjs.js??ref–8-oneOf-1-3!./node_modules/cache-loader/dist/cjs.js??ref–0-0!./node_modules/vue-loader/lib??vue-loader-opt
ions!./src/views/Login.vue?vue&type=style&index=0&lang=scss& 4:14-436 15:3-20:5 16:22-444
…………..
三、問題分析
首先,檢查代碼,並沒有什麼錯誤的地方;其次,涉及到這個問題,可能就是版本原因瞭,安裝的 sass-loader 版本太高,卸載安裝低版本嘗試一下。
四、問題處理
可能用到的命令:
- 查看 node 版本命令:
node -v
- 查看 node-sass 等版本信息:
npm list
- 卸載 sass-loader 命令:
npm uninstall --save sass-loader
- 卸載 ode-sass 命令:
npm uninstall --save node-sass
- 安裝低版本 sass-loader 的命令:
npm i -D [email protected]
- 安裝低版本 node-sass 的命令:
npm i [email protected]
- 運行 Vue 命令:
npm run serve
1、查看 node 版本和 node-sass 版本依賴關系
參考網址:GitHub – sass/node-sass: Node.js bindings to libsass
2、查看 當前 node 版本和 node-sass 版本是否符合依賴關系
查看 node 版本命令:node -v
查看 node-sass 等版本信息:npm list
3、當前 node 版本和 node-sass 版本符合依賴關系,可能就是 sass-loader 版本過高,卸載 sass-loader
卸載 sass-loader 命令:npm uninstall --save sass-loader
4、嘗試安裝低版本的 sass-loader
這裡降到 10.x 版本試試,你也可試試 11.x 版本先
安裝低版本 sass-loader 的命令:npm i -D [email protected]
5、運行 vue 工程,順利通過瞭
(如果你的還是有問題,可以試試在降低,同時也可對應降低 node-sass 試試,若再有,可以嘗試找找其他原因)
運行 Vue 命令:npm run serve
總結
到此這篇關於Vue報錯Syntax Error:TypeError: this.getOptions is not a function的文章就介紹到這瞭,更多相關Vue報錯Syntax Error:TypeError內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- npm i報錯以及解決方案實戰案例
- vue+vux vux安裝出現錯誤問題及解決
- 在vue項目中引入scss並使用scss樣式詳解
- Node Sass依賴問題排查思路解析
- Vue-loader使用教程