mirror of
https://github.com/Chanzhaoyu/chatgpt-web.git
synced 2025-07-22 12:41:56 +00:00
feat: 侧边栏切换取消上次请求
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
import { defineStore } from 'pinia'
|
||||
import type { HistoryState } from './helper'
|
||||
import { getLocalHistory, setLocalHistory } from './helper'
|
||||
|
||||
export const useHistoryStore = defineStore('history-store', {
|
||||
state: (): HistoryState => getLocalHistory(),
|
||||
getters: {
|
||||
@@ -65,6 +64,8 @@ export const useHistoryStore = defineStore('history-store', {
|
||||
},
|
||||
|
||||
chooseHistory(index: number) {
|
||||
if (this.active === index)
|
||||
return
|
||||
this.active = index
|
||||
setLocalHistory(this.$state)
|
||||
},
|
||||
|
Reference in New Issue
Block a user