28 lines
552 B
TypeScript
Raw Normal View History

2025-08-18 22:55:58 +08:00
/*
* @Description:
* @Author:
* @Date: 2025-06-19 22:14:51
* @LastEditors:
*/
2025-05-27 19:31:37 +08:00
import type { RouteRecordRaw } from 'vue-router';
import { BasicLayout } from '#/layouts';
import { $t } from '#/locales';
const routes: RouteRecordRaw[] = [
{
component: BasicLayout,
meta: {
icon: 'ant-design:format-painter-filled',
order: 3,
title: $t('abp.menu.code'),
authority: ['AbpCodeManagement'],
},
name: 'code',
path: '/code',
2025-08-18 22:55:58 +08:00
children: [],
2025-05-27 19:31:37 +08:00
},
];
export default routes;