安装
$ npm install -S sass-loader node-sass 引用
在 vue 组件中添加属性 <style lang="scss" scope>
问题
正当以为可以安心运行 sass 代码时,却报错
Module build failed: TypeError: this.getResolve is not a function解决方法
原因:sass-loader的版本过高导致的编译错误,要退回到 7.3.1
运行:
npm uninstall sass-loader(卸载当前版本)
npm install -S sass-loader@7.3.1 (安装指定版本即可)
