组件嵌套时报:Component template should contain exactly one root element. If you are using v-if on multiple
Posted toTo_l
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了组件嵌套时报:Component template should contain exactly one root element. If you are using v-if on multiple相关的知识,希望对你有一定的参考价值。
在组件嵌套的过程中,报了一个错误:
这里报错的原因是:vue的组件(模板)只能有一个根节点,即.vue文件中的<template>标签下只能有一个子元素。
因此,建议大家在写.vue组件的时候,最好在<template>下添加一个标签(比如div),在这个标签里面写我们的组件。
例如:
1 <template> 2 <div> 3 <!--你的组件代码--> 4 </div> 5 </template>
我这边就是用这种方法解决的。也希望能帮助到大家。
以上是关于组件嵌套时报:Component template should contain exactly one root element. If you are using v-if on multiple的主要内容,如果未能解决你的问题,请参考以下文章