dbfu / fluxy-admin-web

fluxy-admin
https://www.fluxyadmin.cn
190 stars 50 forks source link

首页根据角色不同变化 #4

Closed Ryan2018-js closed 1 year ago

Ryan2018-js commented 1 year ago

之前用vue项目,动态菜单,默认登录后进入动态菜单第一项,也可以说动态菜单的第一项,默认是首页,但这个路径还是动态菜单的正常路径,并非/。这样就不用提前在router中定义首页了。刚接触react项目,不知道这个需求是否可行?

dbfu commented 1 year ago

可以在页面初始化中判断当前路由是否为/,如果是/,就用router.navigate方法跳转到默认路由。

Ryan2018-js commented 1 year ago

感谢解答