route.ts 201 Bytes
export default [
  {
    path: 'tree',
    name: 'TREE',
    component: () => import('./IndexPage.vue'),
    meta: {
      title: 'Tree',
      permission: ['*'],
      keepalive: true,
    },
  },
];