【Vue报错】关于 The template root requires exactly one element 报错的解决方案

2022-06-09 15:06:35 浏览数 (1)

报错内容

代码语言:javascript复制
Vue Error: The template root requires exactly one element.

详见下图: https://img-blog.csdnimg.cn/fe95400d743d4325a3a617b2b936f5b9.png VSCode 中报错信息

Node中报错信息

报错原因

Vue只允许模板里存在一个根节点。

解决方案

在 <template> 中添加一个 <div>标签,之后所有的组件全部加在 <div>即可解决。

0 人点赞