关闭selint 的方式
在项目根目录新建一个 vue.config.js 的文件 写入以下代码 lintOnSave:false, 再重启 vue
//关闭selint
module.exports = {
lintOnSave:false,
devServer:{
overlay:{
warnings:true,
errors:true
}
}
}
然后 用 npm run lint 来修正写的代码
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!