报错
6:1 error Expected indentation of 0 spaces but found 4 indent 7:1 error Expected indentation of 0 spaces but found 4 indent 8:1 error Expected indentation of 0 spaces but found 4 indent
关闭
有vue.config.js
在vue.config.js文件的
module.exports = {}
模块末尾处添加
lintOnSave:false
就好了
无vue.config.js
源目录新建一个vue.config.js,在里面添加下面代码保存:
module.exports = { lintOnSave:false }
重新
cnpm run dev
一下就好了