hfyk-app
Version:
导出问题
25 lines (24 loc) • 543 B
text/typescript
import { defineStore } from "pinia";
export const useUserInfo = defineStore("gxh_userInfo", {
state:() => ({
userForm: {
name: '',
pwd: ''
},
phoneForm: {
phone: '',
code: ''
},
rememberPsw: 0,
// 历史账户列表
choiceList:[],
// 选中账户信息
choiceIndex: 0,
secretKey: "hfyk"
}),
actions: {
saveHistoriesList() {
this.choiceList
}
}
})