缺少標簽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