useUserStore -> useUserInfoStore
This commit is contained in:
parent
1e1834213b
commit
a169d71c1d
@ -1,8 +1,16 @@
|
|||||||
|
/*
|
||||||
|
작성자 : 박지윤
|
||||||
|
작성일 : 2025-02-04
|
||||||
|
수정자 :
|
||||||
|
수정일 :
|
||||||
|
설명 : 로그인 한 사용자 정보
|
||||||
|
*/
|
||||||
|
|
||||||
import { ref } from 'vue';
|
import { ref } from 'vue';
|
||||||
import { defineStore } from 'pinia';
|
import { defineStore } from 'pinia';
|
||||||
import $api from "@api";
|
import $api from "@api";
|
||||||
|
|
||||||
export const useUserStore = defineStore('userInfo', () => {
|
export const useUserInfoStore = defineStore('userInfo', () => {
|
||||||
const user = ref(null);
|
const user = ref(null);
|
||||||
|
|
||||||
// 사용자 정보 가져오기
|
// 사용자 정보 가져오기
|
||||||
Loading…
Reference in New Issue
Block a user