【Vue项目】去除ESLint浏览器报错

问题如下:
image

解决方案:项目下新建vue.config.js并添加以下代码:

module.exports = {
    lintOnSave: false,
}

你可能感兴趣的:(eslintvue.js)