美文网首页
vue组件报错Component template should

vue组件报错Component template should

作者: 黑白说程序 | 来源:发表于2020-10-11 16:28 被阅读0次

    Component template should contain exactly one root element. If you are using v-if on multiple elements, use v-else-if to chain them instead.

    这意思是组件使用是需要一个根标签,我们注册父子组件的时候外面要有个div包含父组件和子组件的值

    const com = Vue.extend({

        template: `

        <div>     // 这里要加一个div包括父组件和子组件才可以,要不然会报错

          <div>你好</div> 

          <con111></con111>

        </div>`,

        components: {

          con111: com2

        }

      })

    相关文章

      网友评论

          本文标题:vue组件报错Component template should

          本文链接:https://www.haomeiwen.com/subject/maawektx.html