25 lines
605 B
TypeScript
Raw Normal View History

import { defineStore } from "pinia";
import { ref, type Ref } from "vue";
import { user } from "@/api";
2024-07-08 16:26:35 +05:00
import { resources } from "@";
export const useUserStore = defineStore("user", () => {
2024-07-08 16:26:35 +05:00
const info: Ref<user.UserInfo | null> = ref(null);
const avatar: Ref<resources.Image | null> = ref(null);
function clear() {
2024-07-08 16:26:35 +05:00
info.value = null;
avatar.value = null;
}
2024-07-08 16:26:35 +05:00
return { info, avatar, clear };
});
export const useMiscStore = defineStore("misc", () => {
// preferencies current tab
const p_current_tab: Ref<number> = ref(0);
return { p_current_tab };
});