state.js 321 B

123456789101112131415
  1. // import
  2. export const useUserInfoStore = () => useState('userInfo', () => {
  3. return {
  4. username: '',
  5. alias: "User",
  6. userid:"",
  7. isLoading:false,
  8. googleId:"",
  9. login: false,
  10. gender:"",
  11. defaultSchool:"",
  12. defaultAddress:"",
  13. apiKey:""
  14. }
  15. })