setSidebarRouters() { let key = this.$route.path.split('/')[1]; key = '/' + key; this.routes.map((item) => { if (key == item.url && item.child.length > 0) { this.$store.commit('permission/SET_SIDEBAR_ROUTERS', item.child); } else if (key == item.url && !item.child.length) { this.$store.commit('permission/SET_SIDEBAR_ROUTERS', [item]); } }); },
时间: 2024-04-07 21:32:12 浏览: 66
this.$toast() 了解一下?
这段代码是一个 Vue.js 中的方法,用于设置侧边栏的路由。首先,它从 `$route` 对象中获取当前路径,并根据 `/` 进行分割,取出第一个片段作为 `key`。然后,它通过遍历 `this.routes` 数组,找到与 `key` 相对应的路由对象 `item`。如果该路由对象有子路由(即 `item.child.length > 0`),则将子路由通过 Vuex 的 `commit` 方法设置到 `permission/SET_SIDEBAR_ROUTERS` 状态中;否则,直接将该路由对象作为数组项设置到 `permission/SET_SIDEBAR_ROUTERS` 状态中。这样,就可以动态地根据当前路由设置侧边栏的内容。
阅读全文