mirror of
https://github.com/imdap/ruoyi-plus-vben5.git
synced 2026-05-08 11:21:27 +08:00
* feat(@vben/playground): add full-screen examples * chore: rm unuse class * chore: move fullScreen demo to features router * chore: responsive * chore: 调整路由路径 * chore: card增加间距 --------- Co-authored-by: Li Kui <90845831+likui628@users.noreply.github.com>
31 lines
652 B
TypeScript
31 lines
652 B
TypeScript
import type { RouteRecordRaw } from 'vue-router';
|
|
|
|
import { BasicLayout } from '#/layouts';
|
|
import { $t } from '#/locales';
|
|
|
|
const routes: RouteRecordRaw[] = [
|
|
{
|
|
component: BasicLayout,
|
|
meta: {
|
|
icon: 'ion:layers-outline',
|
|
keepAlive: true,
|
|
order: 1000,
|
|
title: $t('page.examples.title'),
|
|
},
|
|
name: 'Examples',
|
|
path: '/examples',
|
|
children: [
|
|
{
|
|
name: 'EllipsisDemo',
|
|
path: 'ellipsis',
|
|
component: () => import('#/views/examples/ellipsis/index.vue'),
|
|
meta: {
|
|
title: $t('page.examples.ellipsis.title'),
|
|
},
|
|
},
|
|
],
|
|
},
|
|
];
|
|
|
|
export default routes;
|