update: HistoryButton icon from Document to Clock for improved clarity

This commit is contained in:
Lexcubia 2025-04-20 19:50:24 +08:00
parent 0601a3a166
commit f6555e5726
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
<el-dropdown trigger="hover" @command="handleHistorySelect"> <el-dropdown trigger="hover" @command="handleHistorySelect">
<el-button <el-button
:class="['history-btn', { 'icon-only': iconOnly }]" :class="['history-btn', { 'icon-only': iconOnly }]"
:icon="Document" :icon="Clock"
text text
bg bg
> >
@ -37,7 +37,7 @@
<script setup> <script setup>
import { computed } from 'vue' import { computed } from 'vue'
import { useChatStore } from '@/store/chat' import { useChatStore } from '@/store/chat'
import { Document, Delete } from '@element-plus/icons-vue' import { Clock, Delete } from '@element-plus/icons-vue'
import { ElMessageBox } from 'element-plus' import { ElMessageBox } from 'element-plus'
const props = defineProps({ const props = defineProps({