From 784b45451ef293eab3a123f6ecf0a57bcfe9cb5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=B3=E5=85=83=E7=9A=93?= Date: Tue, 13 May 2025 22:38:15 +0800 Subject: [PATCH] feat: add Input component and integrate it into chatbot; enhance chatbot layout with new message input --- components/app/windows/chatbot.vue | 17 ++++++++++++++--- components/ui/input/Input.vue | 24 ++++++++++++++++++++++++ components/ui/input/index.ts | 1 + 3 files changed, 39 insertions(+), 3 deletions(-) create mode 100644 components/ui/input/Input.vue create mode 100644 components/ui/input/index.ts diff --git a/components/app/windows/chatbot.vue b/components/app/windows/chatbot.vue index 6319944..5b59087 100644 --- a/components/app/windows/chatbot.vue +++ b/components/app/windows/chatbot.vue @@ -1,5 +1,6 @@ diff --git a/components/ui/input/Input.vue b/components/ui/input/Input.vue new file mode 100644 index 0000000..1165ea5 --- /dev/null +++ b/components/ui/input/Input.vue @@ -0,0 +1,24 @@ + + + diff --git a/components/ui/input/index.ts b/components/ui/input/index.ts new file mode 100644 index 0000000..a691dd6 --- /dev/null +++ b/components/ui/input/index.ts @@ -0,0 +1 @@ +export { default as Input } from './Input.vue'