ff-operation/src/router/accountGuard.ts

7 lines
173 B
TypeScript
Raw Normal View History

import { useAccountStore } from "@/stores/account";
export async function loadAccountData(to: any, from: any, next: any) {
const account = useAccountStore();
next();
}