用Vue-li3跑项目的时候报错:3 errors and 0 warnings potentially fixable with the `--fix` option.
时间:2021-07-09 00:40:03
收藏:0
阅读:754
解决方法1:
注释掉.eslintrc.js文件中的’@vue/standard’
解决方法2:
vue.config.js中将以下三项设置为false
devServer: { overlay: { warnings: false, errors: false }, lintOnSave: false }
原文:https://www.cnblogs.com/canjiaXQD/p/14988432.html
评论(0)