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"
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。