Vue中使用Stylus报错:Module build failed: TypeError: this.getOptions is not a function

image.png

安装stylus

 npm install stylus stylus-loader --save-dev

npm run dev后报错

image.png

报错原因

stylus-loader版本过高,更改为[email protected]即可

再次安装stylus

npm uninstall stylus stylus-loader //删除之前的loader
npm install stylus [email protected] --save-dev //再次安装
image.png

运行结果

image.png

你可能感兴趣的:(Vue中使用Stylus报错:Module build failed: TypeError: this.getOptions is not a function)