router.ts 206 Bytes
Newer Older
hucy's avatar
hucy committed
1 2 3
export default [
  {
    path: 'home',
hucy's avatar
hucy committed
4
    name: 'PageHome',
hucy's avatar
hucy committed
5 6 7 8 9 10 11 12
    component: () => import('./PageHome.vue'),
    meta: {
      title: '主页',
      permission: ['*'],
      keepalive: true,
    },
  },
];