乐趣区

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

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"
退出移动版