[Vue Router warn]: No match found for location with path

vue-router.mjs:35 [Vue Router warn]: No match found for location with path ""
[Vue Router warn]: uncaught error during route navigation:

原來用route.push 報錯要改成route.addRoute

accessRoutes.forEach(item=>{
        modules.push(item)
        //router.push(item)
        router.addRoute(item)
    })

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章