缺少标签template抱歉的包裹报错:[Vue warn]: Failed to mount component: template or render function not defined.


 

[Vue warn]: Failed to mount component: template or render function not defined.

翻译:

挂载组件失败:模板或呈现函数未定义。

意思是说,当前页面缺少了 <template></template>标签的包裹,如下:

//这样就会报错,外面必须有一个<template></template>标签包裹起来
<div class="container">
    ....
</div>
<script>
    ....
</script>

 

应该改为:

//应该改为如下:
<template>
    <div class="container">
         ....
    </div>
</template>
<script>
    ....
</script>

  


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM