Files
Kg.SeaTime/Web/src/composables/usePageLoading.ts
Putoo cc9d697f9c 111
2026-04-28 14:49:43 +08:00

15 lines
279 B
TypeScript

export class PageLoading{
private static get PageLoading() {
return useAppStore()
}
public static Loading(): void {
this.PageLoading.startLoading("加载中...");
}
public static Close(): void {
this.PageLoading.endLoading();
}
}