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

@@ -1,6 +1,7 @@
import {defineStore} from 'pinia';
import {ref} from "vue";
export const langStore = defineStore(
'lang',
() => {
@@ -11,10 +12,11 @@ export const langStore = defineStore(
},
{
// 开启数据持久化
persist: {
key: 'lang',
persistedState: {
persist: true,
storage: localStorage,
pick: ["lang"],
key: 'lang',
includePaths: ['lang']
}
}
);