ZhangXianQiang
2024-06-28 96a3cc03d4a01366135fad937292647c413d26d0
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
  }
});