天天看點

Failed to mount component: template or render function not defined

錯誤原因

Failed to mount component: template or render function not defined
Failed to mount component: template or render function not defined

錯誤原因:圖1,路由頁面引入了@/views/Home/index

因為之前我所有的結構樣式行為都是在一個檔案,就叫做index.vue,是以引入時我省略了字尾名。

後來我的home下面的index.vue太大我拆成了index.js,index.vue,index.scss,三個檔案,如圖2,但是路由檔案的路徑我沒有改,還是@/views/Home/index,是以它預設加載了js檔案,是以就會報如标題這樣的錯誤。說是沒有template之類的。

注意,引入時還是帶字尾比較保險。