// @ts-check import { defineStore } from "pinia"; export const useAccountStore = defineStore({ id: "account", state: () => ({ account: JSON.parse( typeof localStorage["account"] == "undefined" ? null : localStorage["account"] ), }), getters: { firstName: (state) => state.account.firstName, lastName: (state) => state.account.lastName, }, actions: { reset() { localStorage.removeItem("account"); }, }, });