vue——解决“You may use special comments to disable some warnings. Use // eslint-disable-next-line to ig
Posted gaoquanquan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue——解决“You may use special comments to disable some warnings. Use // eslint-disable-next-line to ig相关的知识,希望对你有一定的参考价值。
在build/webpack.base.conf.js文件中,注释或者删除掉:module->rules中有关eslint的规则
module: { rules: [ //...(config.dev.useEslint ? [createLintingRule()] : []), // 注释或者删除 { test: /.vue$/, loader: ‘vue-loader‘, options: vueLoaderConfig }, ... } ] }
然后 nmp run dev 就能正常运行了
以上是关于vue——解决“You may use special comments to disable some warnings. Use // eslint-disable-next-line to ig的主要内容,如果未能解决你的问题,请参考以下文章