Error:The “HelloWorld“ component has been registered but not used vue/no-unused-components
好像只有vue3有这种问题出现,vue2没有出现过,这是为啥???
·
问题:
Error:The “HelloWorld” component has been registered but not used vue/no-unused-components
原因:
vue中注册的components(组件)没有在html中使用,编译器会报“组件注册了但是未使用”的错误
解决:
找到package.json文件中的eslintConfig下的rules,增加代码:
"rules": {
"vue/no-unused-components": "off", // 当存在定义而未使用的组件时,关闭报错
"no-unused-vars":"off" // 当存在定义而未使用的变量时,关闭报错
}
最后:
好像只有vue3有这种问题出现,vue2没有出现过,这是为啥???
更多推荐
已为社区贡献2条内容
所有评论(0)