2025-05-02 22:08:36 +08:00
|
|
|
import type { RouteRecordRaw } from 'vue-router';
|
|
|
|
|
|
|
|
import { SvgSpider } from '@vben/icons';
|
|
|
|
|
|
|
|
const routes: RouteRecordRaw[] = [
|
|
|
|
{
|
|
|
|
name: 'spider',
|
|
|
|
path: '/spider',
|
|
|
|
component: () => import('#/views/spider/index.vue'),
|
|
|
|
meta: {
|
|
|
|
icon: SvgSpider,
|
|
|
|
title: '数据爬取',
|
|
|
|
order: 1,
|
2025-05-11 10:46:55 +08:00
|
|
|
authority: ['dify:server:init'],
|
2025-05-02 22:08:36 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
export default routes;
|