✖ 1 problem (1 error, 0 warnings) 1 error and 0 warnings potentially fixable with the `--fix` opt

✖ 1 problem (1 error, 0 warnings) 1 error and 0 warnings potentially fixable with the --fix option.
出现原因:
eslint 格式检查
解决方法:
关闭eslint检查
在 vue.config.js 中添加:

module.exports = {
    lintOnSave: false
}

你可能感兴趣的:(vue.js,前端,javascript)