[解决]TypeError: this.getOptions is not a function

在开发 Vue 项目时,安装了 sass-loader 后,项目出现以下报错

error.jpg

package.json文件如下

packageJson.png

然后翻阅了 sass-loader 的 github [ https://github.com/webpack-contrib/sass-loader/releases/tag/v11.0.0 ]
发现 [email protected] 版本需要 [email protected] ,而 @vue/[email protected] 所用的是 webpack@4,所以需要将 sass-loader的版本降到11以下

step1
yarn remove sass-loader
step2
yarn add [email protected]

everything is fine!

你可能感兴趣的:([解决]TypeError: this.getOptions is not a function)