ChatEndScreen.vue
1 <script setup lang="tsx"> 2 import { useHistoryStore } from '@/renderer/store/history' 3 const historyStore = useHistoryStore() 4 </script> 5 <template> 6 <v-container> 7 <v-btn-group variant="outlined" divided> 8 <v-btn 9 v-tooltip:top="$t('chat.download')" 10 icon="mdi-download" 11 @click="historyStore.downloadHistory()" 12 ></v-btn> 13 <v-btn 14 v-tooltip:top="$t('chat.delete')" 15 icon="mdi-delete-outline" 16 color="error" 17 @click="historyStore.resetState()" 18 ></v-btn> 19 </v-btn-group> 20 </v-container> 21 </template>