913 error Component name “home“ should always be multi-word vuemulti-word-component-names

新手在操作npm run serve 的时候会出现以下的报错,报错原因是希望组件名写成驼峰式或者链-先形式的,但是官方又明确单个单词组件命名是符合规定的,总结在编译的时候eslint 会检测将次写法判定为不规格。

913 error Component name “home“ should always be multi-word vuemulti-word-component-names_第1张图片

解决方案:

在项目根目录找到一个vue.config.js 文件,没有就在根目录创建一个,写上下面标注的代码,保存,在重新编译。项目就可以正常运行了。

913 error Component name “home“ should always be multi-word vuemulti-word-component-names_第2张图片

你可能感兴趣的:(前端,html,vue.js,javascript,前端)