add image upscale

This commit is contained in:
2024-12-10 12:17:02 +08:00
parent 4d9b23c443
commit 91fef89657
24 changed files with 734 additions and 31 deletions

View File

@@ -3,6 +3,7 @@ import {useThemeStore} from "@/store/modules/themeStore.ts";
import {langStore} from "@/store/modules/langStore.ts";
import {useCommentStore} from "@/store/modules/commentStore.ts";
import {useWebSocketStore} from "@/store/modules/websocketStore.ts";
import {useUpscaleStore} from "@/store/modules/upscaleStore.ts";
export default function useStore() {
return {
@@ -11,5 +12,6 @@ export default function useStore() {
lang: langStore(),
comment: useCommentStore(),
websocket: useWebSocketStore(),
upscale: useUpscaleStore(),
};
}