遇到的坑(坑堆,遇到坑就往这里扔)

错误(1):error  The template requires child element  vue/valid-template-root

  这个错误只要将<template></template>中加上div就行了

错误(2):Component name "helloworld" should always be multi-word  vue/multi-word-component-names

  这个是语法错误,需要在vue.config.js中加上lintOnSave:false关闭语法检查,错误(1)也可以这样设置

  

问题(3):定义组件时父组件应该写在子组件后面

 问题(4):Failed to resolve component: counter If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement. at <App>

  这是因为组件没有注册,需要使用components:{counter }注册这个组件

posted @ 2022-08-02 19:39  zdc123  阅读(1259)  评论(0)    收藏  举报