ZhangXianQiang
2024-06-20 1f33c401da7a7a7b67222af7400dba66d65b6a9a
1
2
3
4
5
6
7
8
9
import { ref } from 'vue';
import { defineStore } from 'pinia';
export const useUserInfoStore = defineStore('userInfo', () => {
  const userInfo = ref('');
 
  return {
    userInfo
  }
});