me.js 634 B

12345678910111213141516171819202122232425
  1. import NavLayout from "@/components/layout/NavLayout"
  2. const me = [
  3. {
  4. path: '/personal',
  5. name: 'personal',
  6. component: NavLayout,
  7. redirect: "/personal/switchAccount",
  8. children: [
  9. {
  10. path: "/personal/switchAccount",
  11. name: "personalSwitchAccount",
  12. component: () => import('@/views/personal/switchAccount.vue'),
  13. meta: {
  14. title: '切换账号',
  15. hasBot: false,
  16. // hasTop: false
  17. }
  18. },
  19. ]
  20. },
  21. ]
  22. export default me;