2024-08-06 10:20:56 +08:00

18 lines
274 B
JavaScript

/**
* @description 用户信息数据持久化
*/
import { defineStore } from 'pinia'
export const useUserStore = defineStore('user', {
state() {
return {
userInfo: {}
}
},
actions: {
updateUserInfo(data) {
this.userInfo = data
}
}
})