19 lines
337 B
TypeScript
19 lines
337 B
TypeScript
|
import type { RouteRecordRaw } from 'vue-router';
|
||
|
|
||
|
import { SvgPPT } from '@vben/icons';
|
||
|
|
||
|
const routes: RouteRecordRaw[] = [
|
||
|
{
|
||
|
name: 'ppt',
|
||
|
path: '/ppt',
|
||
|
component: () => import('#/views/ppt/index.vue'),
|
||
|
meta: {
|
||
|
icon: SvgPPT,
|
||
|
title: 'PPT自动生成',
|
||
|
order: 3,
|
||
|
},
|
||
|
},
|
||
|
];
|
||
|
|
||
|
export default routes;
|