From 108d75516601b63490afb572628310e8fdc0aea9 Mon Sep 17 00:00:00 2001 From: Hanserwei <2628273921@qq.com> Date: Wed, 22 Oct 2025 20:07:55 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AF=B9=E8=AF=9D=E5=AE=8C=E6=88=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 14 +- src/router/index.ts | 8 +- src/views/AiChatPage.vue | 516 +++++++++++++++++++++++++++++++++++++++ 3 files changed, 536 insertions(+), 2 deletions(-) create mode 100644 src/views/AiChatPage.vue diff --git a/src/App.vue b/src/App.vue index 1a3d812..3f2b2b0 100644 --- a/src/App.vue +++ b/src/App.vue @@ -7,4 +7,16 @@ import { RouterView } from 'vue-router' - + diff --git a/src/router/index.ts b/src/router/index.ts index e1eab52..9019894 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -2,7 +2,13 @@ import { createRouter, createWebHistory } from 'vue-router' const router = createRouter({ history: createWebHistory(import.meta.env.BASE_URL), - routes: [], + routes: [ + { + path: '/', + name: 'aiChatPage', + component: () => import('../views/AiChatPage.vue'), + }, + ], }) export default router diff --git a/src/views/AiChatPage.vue b/src/views/AiChatPage.vue new file mode 100644 index 0000000..a9a98d9 --- /dev/null +++ b/src/views/AiChatPage.vue @@ -0,0 +1,516 @@ + + +