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的主要内容,如果未能解决你的问题,请参考以下文章

vue跨域解决方法

vue 设置proxyTable解决跨域问题

vue脚手架安装报错解决

vue-resource 怎么解决跨域问题

vue的开发模式跨域解决方案和代理配置

vue-resource 怎么解决跨域问题