feat: 添加license生成页面
This commit is contained in:
16
apps/web-antd/src/router/routes/modules/license.ts
Normal file
16
apps/web-antd/src/router/routes/modules/license.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
import type { RouteRecordRaw } from 'vue-router';
|
||||
|
||||
const routes: RouteRecordRaw[] = [
|
||||
{
|
||||
path: '/license/generate',
|
||||
component: () => import('#/views/license/license/generate/index.vue'),
|
||||
name: 'LicenseGenerate',
|
||||
meta: {
|
||||
title: 'License 生成',
|
||||
icon: 'carbon:license-maintenance',
|
||||
hideInMenu: true,
|
||||
},
|
||||
},
|
||||
];
|
||||
|
||||
export default routes;
|
||||
@@ -0,0 +1,3 @@
|
||||
<template>
|
||||
<div>测试</div>
|
||||
</template>
|
||||
Reference in New Issue
Block a user