关于前端:eslint语法报错导致vue项目运行报错

23次阅读

共计 286 个字符,预计需要花费 1 分钟才能阅读完成。

ERROR in [eslint] 
/Users/yangqing/Vue/v6/code/component/src/components/Left.vue
  1:1  error  Component name "Left" should always be multi-word  vue/multi-word-component-names

解决办法:

// 增加组件命名疏忽规定
    "vue/multi-word-component-names": ["error",{"ignores": ["Left","Right"]  // 在这个数组中退出须要疏忽的组件名
    }],
    "no-unused-vars":"off"

正文完
 0