route.ts 201 Bytes
Newer Older
hucy's avatar
hucy committed
1 2 3 4 5 6 7 8 9 10 11 12
export default [
  {
    path: 'amis',
    name: 'AMIS',
    component: () => import('./IndexPage.vue'),
    meta: {
      title: 'Amis',
      permission: ['*'],
      keepalive: true,
    },
  },
];