import { reactive } from 'vue'; export const store = reactive<{token: string | null, setToken: (token: string | null) => void}>({ token: null, setToken: (token: string | null) => store.token = token });