chore: 删除文件夹(前端路由需要的)

This commit is contained in:
dap
2025-01-15 23:16:12 +08:00
parent dcd633bb39
commit 9b68aacc27
2 changed files with 0 additions and 94 deletions

View File

@@ -1,28 +0,0 @@
import type { RouteRecordRaw } from 'vue-router';
import { $t } from '#/locales';
const routes: RouteRecordRaw[] = [
{
meta: {
icon: 'ic:baseline-view-in-ar',
keepAlive: true,
order: 1000,
title: $t('demos.title'),
},
name: 'Demos',
path: '/demos',
children: [
{
meta: {
title: $t('demos.antd'),
},
name: 'AntDesignDemos',
path: '/demos/ant-design',
component: () => import('#/views/demos/antd/index.vue'),
},
],
},
];
export default routes;