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"

请你学习
116 声望0 粉丝