3、網友翻譯的vuejs2官方中文文檔
部分報錯處理:
1、錯誤一
vue.js?b6db:2611[Vue warn]: Unknown custom element: <router-link> - did you register the component correctly? For recursive components, make sure to provide the "name" option.
found in component <wrapper> at e:\filename
vue.js?b6db:2611[Vue warn]: Unknown custom element: <router-view> - did you register the component correctly? For recursive components, make sure to provide the "name" option. (found in component <wrapper> at e:\filename)
這兩個錯誤時有時沒有的,一直不知道是為什么會出現這個錯誤,后來在 segmentfault 才知道是沒有注冊插件
//注冊插件 Vue.use(VueRouter)
2、常見錯誤之vue-router路由設置順序
*號一般用來匹配設置404頁面,在遍歷的時候如果放在其他頁面前,就會發現*后面的頁面怎么點擊都只顯示*號頁面的內容...