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