|
@@ -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';
|
|
|
|
|
|
// 响应式变量声明
|