biz.ts
798 Bytes
/*
* @Date: 2026-01-06 13:48:56
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2026-01-06 14:53:56
* @FilePath: /vben-admin/apps/web-ele/src/router/routes/modules/biz.ts
* @Description: 文件描述
*/
import type { RouteRecordRaw } from 'vue-router';
import { $t } from '#/locales';
const routes: RouteRecordRaw[] = [
{
meta: {
icon: 'lucide:briefcase-business',
order: 30,
title: $t('page.biz.title'),
},
name: 'Biz',
path: '/biz',
children: [
{
meta: {
icon: 'lucide:users',
title: $t('page.biz.customers'),
},
name: 'BizCustomers',
path: '/biz/customers',
component: () => import('#/views/biz/customers/index.vue'),
},
],
},
];
export default routes;