vue安装stylus后报错:Syntax Error: TypeError: this.getOptions is not a function

vue安装了stylus后,重启项目,终端报错 Syntax Error: TypeError: this.getOptions is not a function, 意思是有语法错误。。。

vue安装stylus后报错:Syntax Error: TypeError: this.getOptions is not a function_第1张图片

原因
安装stylus报错可能是安装的版本过高,进行降级

解决方案
1.先卸载当前版本
npm uninstall stylus-loader

2.安装低版本
npm i [email protected] -S

总结
这里, Syntax Error: TypeError: this.getOptions is not a function 这种语法报错提示,一般都是版本问题

你可能感兴趣的:(前端bug,vue.js,stylus,npm)