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