mirror of
https://github.com/lzh-1625/go_process_manager.git
synced 2025-10-06 08:27:03 +08:00
57 lines
1.1 KiB
TypeScript
57 lines
1.1 KiB
TypeScript
// users Data Page
|
|
export default [
|
|
{
|
|
path: "/ai/chatbot_v1",
|
|
component: () => import("@/views/chatgpt/ChatBotV1.vue"),
|
|
meta: {
|
|
requiresAuth: true,
|
|
layout: "landing",
|
|
category: "AI",
|
|
title: "ChatBotV1",
|
|
},
|
|
},
|
|
{
|
|
path: "/ai/chatbot_v2",
|
|
component: () => import("@/views/chatgpt/ChatBotV2.vue"),
|
|
meta: {
|
|
requiresAuth: true,
|
|
layout: "landing",
|
|
category: "AI",
|
|
title: "ChatBotV2",
|
|
},
|
|
},
|
|
// vioce bot
|
|
{
|
|
path: "/ai/voice-bot",
|
|
component: () => import("@/views/chatgpt/VoiceBot.vue"),
|
|
meta: {
|
|
requiresAuth: true,
|
|
layout: "landing",
|
|
category: "AI",
|
|
title: "VoiceBot",
|
|
},
|
|
},
|
|
// image bot
|
|
{
|
|
path: "/ai/image-bot",
|
|
component: () => import("@/views/chatgpt/ImageBot.vue"),
|
|
meta: {
|
|
requiresAuth: true,
|
|
layout: "landing",
|
|
category: "AI",
|
|
title: "ImageBot",
|
|
},
|
|
},
|
|
// chart bot
|
|
{
|
|
path: "/ai/chart-bot",
|
|
component: () => import("@/views/chatgpt/ChartBot.vue"),
|
|
meta: {
|
|
requiresAuth: true,
|
|
layout: "landing",
|
|
category: "AI",
|
|
title: "ChartBot",
|
|
},
|
|
},
|
|
];
|