Newer
Older
smartKitchenFront / src / router / modules / accountManagement.js
liuyangyingjie on 26 Oct 2022 727 bytes first commit
/* Layout */
import Layout from '@/layout/Layout'
export const accountManagemant = [{
  path: 'accountManagemant',
  component: Layout,
  redirect: '/exampleTable', // 重定向
  name: 'AccountManagemant',
  alwaysShow: true,
  meta: {
    title: '账号管理',
    icon: '账号管理' // 图标
  },
  children: [
    {
      path: '/stateView',
      name: 'StateView',
      component: () => import('@/views/account/stateView'), //重定向的组件位置
      meta: { title: '状态查看', icon: '' }
    },
    {
      path: '/information',
      name: 'Information',
      component: () => import('@/views/account/information'), //重定向的组件位置
      meta: { title: '信息填报', icon: '' }
    }
  ]
}]