import { defineStore } from "pinia"; import { ref, computed } from "vue"; export const useUserStore = defineStore("user", () => { const user = ref(null); const notifications = computed(() => { return user.value.notifications; }); return { user, notifications }; });