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