2.2.6
https://github.com/vuejs/vue/issues/5331
<template id="page-footer-template">
<br />
<div>
<h1>hello,world</h1>
</div>
<hr />
</template>
hello,world
Error compiling template:
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.
你是看不懂英文吗?Read the error message please.
Component template should contain exactly one root element.
@yijunjun Try
<template id="page-footer-template">
<div>
<br />
<div>
<h1>hello,world</h1>
</div>
<hr />
</div>
</template>
Most helpful comment
@yijunjun Try