vueのnpm run serve报错Parsing error: The keyword 'import' is reserved
需要配置 eslint,在项目目录下建立 .eslintrc.js 的方式来配置。module.exports = {root: true,parserOptions: {sourceType: 'module'},// required to lint *.vue filesplugins: ['html...
·
需要配置 eslint,在项目目录下建立 .eslintrc.js
的方式来配置。
module.exports = {
root: true,
parserOptions: {
sourceType: 'module'
},
// required to lint *.vue files
plugins: [
'html'
],
// add your custom rules here
'rules': {
// allow debugger during development
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0
}
}
配置完重新启动即可
更多推荐
已为社区贡献6条内容
所有评论(0)