hippofish/packages/client/src/reactiveAccount.ts

10 lines
252 B
TypeScript
Raw Normal View History

2023-11-26 21:27:02 +01:00
import { reactive } from "vue";
import type { Account } from "@/account";
const accountData = localStorage.getItem("account");
// TODO: 外部からはreadonlyに
export const $i = accountData
? reactive(JSON.parse(accountData) as Account)
: null;