route.ts 221 Bytes
export default [
  {
    path: 'binary-tree',
    name: 'BINARY_TREE',
    component: () => import('./BinaryTree.vue'),
    meta: {
      title: '二叉树',
      permission: ['*'],
      keepalive: true,
    },
  },
];