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