控制台报错
vue.runtime.esm.js:619 [Vue warn]: Unknown custom element: <tempalte> - did you register the component correctly? For recursive components, make sure to provide the "name" option.
虽然不影响程序但是看到还是很别扭
解决方法
找到tempalte标签。template标签下只能有一个标签
以上是错误写法
解决方法1:将template标签改成div标签
解决方法2:将template子标签用div或其他标签给包起来
<tempalte>
<div>
.....你的内容.....
</div>
</tempalte>