mirror of
https://github.com/BTMuli/TeyvatGuide.git
synced 2025-12-15 09:48:14 +08:00
👌 fix(store): 更新默认配置
This commit is contained in:
@@ -13,14 +13,14 @@ import { defineStore } from "pinia";
|
|||||||
export const useAchievementsStore = defineStore(
|
export const useAchievementsStore = defineStore(
|
||||||
"achievements", () => {
|
"achievements", () => {
|
||||||
// 成就数据
|
// 成就数据
|
||||||
const totalAchievements = ref(899);
|
const totalAchievements = ref(950);
|
||||||
const finAchievements = ref(0);
|
const finAchievements = ref(0);
|
||||||
const lastVersion = ref("v3.5");
|
const lastVersion = ref("v3.6");
|
||||||
const UIAFVersion = ref("v1.1");
|
const UIAFVersion = ref("v1.1");
|
||||||
const title = ref("成就完成数:0/899 完成率:0%");
|
const title = ref("成就完成数:0/950 完成率:0%");
|
||||||
|
|
||||||
function init (): void {
|
function init (): void {
|
||||||
totalAchievements.value = 899;
|
totalAchievements.value = 950;
|
||||||
finAchievements.value = 0;
|
finAchievements.value = 0;
|
||||||
title.value = getTitle();
|
title.value = getTitle();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user