error
in
./src/components/page/test.vue
(emitted value instead of an instance of error)
vue template syntax error:
component template should contain exactly one root element. if you are using v-
if
on multiple elements, use v-
else
-
if
to chain them instead.
@ ./src/components/page/test.vue 5:2-167
@ ./src/router/index.js
@ ./src/main.js
@ multi ./build/dev-client babel-polyfill ./src/main.js
剛開始這樣寫得時候是沒有發現啥錯誤的,我只是在後面新增乙個
或是加了別的就說出現這個錯誤
}
原來vue模板只能有乙個根物件
所以你想要出現正常的效果,你的用乙個div來或是別的標籤來包裹全部的元素
正確的寫法就是:
haha1
hahhaa
頁面重新整理 重新整理vue頁面,解決資料丟失
解決方法一 最先想到的應該就是利用localstorage sessionstorage將資料儲存在外部,做乙個持久化儲存,下面是利用localstorage儲存的具體方案 方案一 由於state中的資料是響應式的,而資料又是通過mutation來進行修改,故在通過mutation修改state中資...
解決vue頁面重新整理,資料丟失
最先想到的應該就是利用localstorage sessionstorage將資料儲存在外部,做乙個持久化儲存,下面是利用localstorage儲存的具體方案 方案一 由於state中的資料是響應式的,而資料又是通過mutation來進行修改,故在通過mutation修改state中資料的同時呼叫...
vue 解決迴圈引用元件報錯的問題
最近在做專案的時候遇到使用迴圈元件,因為模式一樣,只有資料不一樣。按照普通元件呼叫格式來做的時候總是報錯,錯誤資訊為 vue warn unknown custom element did you register the component correctly?for recursive comp...