| | |
| | | component: router.component, |
| | | redirect: routeCfg.redirect || router.redirect, |
| | | meta: { |
| | | authority: routeCfg.authority || router.authority || '*', |
| | | icon: routeCfg.icon || router.icon, |
| | | page: routeCfg.page || router.page, |
| | | link: routeCfg.link || router.link |
| | | authority: routeCfg.authority || router.authority || routeCfg.meta?.authority || router.meta?.authority || '*', |
| | | icon: routeCfg.icon || router.icon || routeCfg.meta?.icon || router.meta?.icon, |
| | | page: routeCfg.page || router.page || routeCfg.meta?.page || router.meta?.page, |
| | | link: routeCfg.link || router.link || routeCfg.meta?.link || router.meta?.link |
| | | } |
| | | } |
| | | if (routeCfg.invisible || router.invisible) { |