欢迎您访问 最编程 本站为您分享编程语言代码,编程技术文章!
您现在的位置是: 首页

Vue.js 错误异常: 组件模板应包含一个根元素。

最编程 2024-10-16 07:21:20
...

一、错误异常:

Errors 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.

二、原因

    组件模板应该只包含一个根元素

    查看vue代码,发现template中有三个元素,发生异常:

三、解决

  将h1,button标签放到div里面

 

 运行效果:

推荐阅读