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 @@ + + +