跳到主内容

vue Error compiling template

· 1分钟阅读

问题

写 template 报错了

vue.js:435 [Vue warn]: Error compiling template:
<h2>标题</h2>
<button>按钮</button>
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.

原因

每个 template 只能有一个根元素。最外层包一个 div 来解决这个问题。

解决

<div>
<h2>标题</h2>
<button>按钮</button>
</div