Vue中如何关闭语法检查

Vue中如何关闭语法检查

首先先创建一个js文件,不可以改名字,就叫vue.config.js
在这里插入图片描述
vue.config.js中的内容

module.exports={
    pages:{
        index:{
            //入口
            entry:'src/main.js'
        },
    },
    lintOnSave:false  //关闭语法检查
}

猜你喜欢

转载自blog.csdn.net/weixin_44747173/article/details/125258356