ERROR in [eslint] /Users/liusy/

2022-10-11  本文已影响0人  冰点雨

错误信息

ERROR in [eslint] 
/Users/liusy/Desktop/vue/vue_test/vue_test/src/components/Home.vue
  9:11  error  Component name "Home" should always be multi-word  vue/multi-word-component-names

✖ 1 problem (1 error, 0 warnings)

解决方法:

在vue.config.js里加一句lintOnSave: false,关闭 elsint 检测

const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
  transpileDependencies: true,
  lintOnSave: false
})
上一篇下一篇

猜你喜欢

热点阅读