2025-05-02 22:08:36 +08:00
|
|
|
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,
|
2025-05-11 10:46:55 +08:00
|
|
|
authority: ['dify:workflow:run'],
|
2025-05-02 22:08:36 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
export default routes;
|