init web ui

This commit is contained in:
akrike
2025-08-13 21:39:13 +08:00
parent 3fb8cd4dad
commit 5de8b45b2f
420 changed files with 46414 additions and 0 deletions

View File

@@ -0,0 +1,56 @@
// 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",
},
},
];