小白VUE学习笔记4:不同报错的解决方法(持续更新)
程序员文章站
2024-03-05 15:31:37
...
1、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.
其实报错已经说的很清楚了,大致意思就是 VUE的模板组件只能有一个根对象 ,相当于说
<template>
<div class="home-root" v-cloak>
<el-input v-model="dateString" placeholder="请输入内容"></el-input>
</div>
</template>
这个组件模板下,想要添加其他内容 就只能在class为home-root
的div下添加内容,如果和这个平级添加内容的话 ,就会报上面的错误。