Browse Source

[Fix 0000] 打包依赖错误

houzekong 2 tháng trước cách đây
mục cha
commit
cbdb75a59f
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      src/components/AIChat/MiniChat.vue

+ 2 - 2
src/components/AIChat/MiniChat.vue

@@ -27,7 +27,7 @@
       </div>
       <!-- 底部操作栏 -->
       <div class="input-area">
-        <Textarea v-model:value="inputText" placeholder="请输入你的问题" />
+        <textarea v-model="inputText" placeholder="请输入你的问题"> </textarea>
         <div class="action-bar">
           <!-- 左侧深度思考按钮 -->
           <div class="think-btn" :class="{ active: isThinking }" @click="toggleThinking"> <span>深度思考</span> </div>
@@ -52,7 +52,7 @@
   import { ref, onMounted, unref, computed } from 'vue';
   import { useUserStore } from '/@/store/modules/user';
   import { SvgIcon } from '../Icon';
-  import { Space, Button, Textarea, Popover } from 'ant-design-vue';
+  import { Space, Button, Popover } from 'ant-design-vue';
   import AIChat from './index.vue';
 
   // 响应式变量声明