diff --git a/src/components/ChatClient.vue b/src/components/ChatClient.vue new file mode 100644 index 0000000..44f5e25 --- /dev/null +++ b/src/components/ChatClient.vue @@ -0,0 +1,391 @@ + + + + + + + + + + + + + + {{ msg.text }} + + + + + + + + + + + + + + + + + + + Chat Settings + + + + + + + + + Documentation + + + + Source + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/layout/AppMenu.vue b/src/layout/AppMenu.vue index ffa2092..9a2c479 100644 --- a/src/layout/AppMenu.vue +++ b/src/layout/AppMenu.vue @@ -1,5 +1,5 @@ diff --git a/src/router/index.js b/src/router/index.js index d58ed77..e67a10f 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -55,6 +55,12 @@ const router = createRouter({ path: '/mdcanvas', name: 'mdcanvas', component: () => import('@/views/pages/canvas/MdCanvas.vue') + }, + + { + path: '/chat', + name: 'chat', + component: () => import('@/views/pages/chat/ChatPage.vue') } ] } diff --git a/src/views/pages/chat/ChatPage.vue b/src/views/pages/chat/ChatPage.vue new file mode 100644 index 0000000..60d3fb1 --- /dev/null +++ b/src/views/pages/chat/ChatPage.vue @@ -0,0 +1,22 @@ + + + + + Chat with WizardAI + + + + + + + + + + \ No newline at end of file
{{ msg.text }}