4

这是我的 Main.js。我通过 API 调用从数据库中获取路由,但 Vue 路由器版本 4 已弃用addRoutes功能。所以现在我一次只能添加一条路线。我不想通过迭代路由/菜单列表来添加路由。请分享你的想法。

new Vue({
    store,
    router,
    render: h => h(App),
    beforeMount() {
      if (this.menuList.length) {
        this.$router.addRoutes(this.menuList);
      }
    },
    computed: {
      ...mapGetters({
        menuList: "menuStore/menuList"
      })
    },
    
  }).$mount("#app");
4

1 回答 1

0

要从我的模块添加路由,我使用这个简单的代码:

MyRoutes.forEach(function(route){
    router.addRoute(route);
})

旧代码:

router.addRoutes(MyRoutes)

所以你的代码应该是这样的:

this.menuList.forEach(function(route){
  this.$router.addRoute(route)
});
于 2021-06-18T07:47:11.633 回答