配置如下/** <img width="213" height="154" alt="Image" src="https://github.com/user-attachments/assets/51b6ba34-9cea-410b-9620-bed2a86145c6" /> * 单独非菜单路由: layout: false, */ export const routes = [ { path: '/', redirect: '/home' }, { name: '首页', path: '/home', component: './home' // 为每个路由添加页面标题配置 }, { name: '权限演示', path: '/access', component: './access' }, { name: 'CRUD 示例', path: '/curd', routes: [ { path: '/curd', redirect: '/curd/table' }, { name: 'Table', path: '/curd/table', component: './table' } ] } ]; <img width="213" height="154" alt="Image" src="https://github.com/user-attachments/assets/91e3a8ce-d1ce-4f3f-9a25-9825a546775c" />