vue——解决“You may use special comments to disable some warnings。

vue——解决“You may use special comments to disable some warnings. Use // eslint-disable-next-line to ignore the next line. Use /* eslint-disable */ to ignore all warnings in a file. ”

在build/webpack.base.conf.js文件中,注释或者删除掉 …(config.dev.useEslint ? [createLintingRule()] : [])

module: {
rules: [
//…(config.dev.useEslint ? [createLintingRule()] : []), // 注释或者删除
{
test: /.vue$/,
loader: ‘vue-loader‘,
options: vueLoaderConfig
},

}
]
}
然后 nmp run dev 就能正常运行了
原网址

猜你喜欢

转载自blog.csdn.net/danruWang/article/details/84643515
今日推荐