👌 fix(store): 更新默认配置

This commit is contained in:
BTMuli
2023-04-12 16:36:52 +08:00
parent b21707ab83
commit af0a5198b6

View File

@@ -13,14 +13,14 @@ import { defineStore } from "pinia";
export const useAchievementsStore = defineStore(
"achievements", () => {
// 成就数据
const totalAchievements = ref(899);
const totalAchievements = ref(950);
const finAchievements = ref(0);
const lastVersion = ref("v3.5");
const lastVersion = ref("v3.6");
const UIAFVersion = ref("v1.1");
const title = ref("成就完成数0/899 完成率0%");
const title = ref("成就完成数0/950 完成率0%");
function init (): void {
totalAchievements.value = 899;
totalAchievements.value = 950;
finAchievements.value = 0;
title.value = getTitle();
}