问题
工程里有这么一段代码:
1 | <template> |
IDE
提示错误信息: The template root requires exactly one element.
原因
这是因为 vue
的模版中只能有一个根节点,所以在 <template>
中插入第二个元素就会报错
解决方案
将 <template>
中的元素用一个大的 <div>
包起来,这样就可以在其中添加多个元素了,可以参考以下示例:
1 | <template> |
工程里有这么一段代码:
1 | <template> |
IDE
提示错误信息: The template root requires exactly one element.
这是因为 vue
的模版中只能有一个根节点,所以在 <template>
中插入第二个元素就会报错
将 <template>
中的元素用一个大的 <div>
包起来,这样就可以在其中添加多个元素了,可以参考以下示例:
1 | <template> |
原文作者:Saki Shum
版权声明:本文采用知识共享署名-非商业性使用 4.0 国际许可协议进行许可