ff-operation/src/router/accountGuard.ts
Julian Krauser f50dff99f3 base structure
transfered from ff admin
2025-02-16 10:48:16 +01:00

6 lines
173 B
TypeScript

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