1. 程式人生 > >[Vue warn]: Error in render: "TypeError: Cannot read property 'matched' of undefined"

[Vue warn]: Error in render: "TypeError: Cannot read property 'matched' of undefined"

菜鳥級的錯誤,,,,
[Vue警告]:渲染錯誤:“TypeError:無法讀取屬性’匹配’的未定義”

在這裡插入圖片描述在這裡插入圖片描述
沒有匯出例項,當然匹配不上啊!!!!!!! 改成下面就好了

export default new VueRouter({
   routes: [
        {
            path:'/pf',
            component:Pf
        }
    ]
})

還有一種可能就是 vue例項中的 “引數名” 用錯,必須是“router”才可以,否則也是匹配不上

new Vue({
  el: '#app',
  router,  (縮寫)相當於 router: router
  render: h => h(App),
})