the template root requires exactly one element

报错:the template root requires exactly one element 

翻译:模板根只需要一个元素

解决方案:

<template>

 <!-- 加上一个div 将整个内容框起来,以后任何内容,都要在这个大的div里面写, -->

 <div>

    <h1>Child组件显示成功</h1>

    <h1>{ {msg}}</h1>

  </div>
</template>



<template>
  <h1>Child组件显示成功</h1>
  <h1>{
    
    {msg}}</h1>
</template>

<script>
export default {
  props: ["msg"]
}
</script>
一直报错,CTRL+鼠标左键点击发现才知道msg出错,但不知道原因。

 


猜你喜欢

转载自blog.csdn.net/qq_49612126/article/details/123256880