This commit is contained in:
zdz
2026-03-19 15:02:23 +08:00
commit 13b28ceec9
121 changed files with 16531 additions and 0 deletions

19
src/stores/saveInfo.ts Normal file
View File

@@ -0,0 +1,19 @@
import { defineStore } from 'pinia'
export default defineStore('speakInfo', {
state: () => ({
id: '',
name: 0,
type: '',
positionName: '',
day: ''
}),
persist: {
enabled: true,
strategies: [
{
key: 'speakInfo', // 持久化状态的键
storage: localStorage // 使用localStorage来持久化状态
}
]
}
})