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.
浣犳槸鐪嬩笉鎳傝嫳鏂囧悧锛烺ead 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