添加不同环境的url

This commit is contained in:
kron
2025-08-09 12:16:36 +08:00
parent ca6cb989c7
commit e164d4736e
4 changed files with 29 additions and 4 deletions

View File

@@ -15,7 +15,7 @@ const props = defineProps({
default: () => {},
},
});
const nextLvlPoints = ref("");
const nextLvlPoints = ref(0);
const containerWidth = computed(() =>
props.showRank ? "72%" : "calc(100% - 15px)"
);
@@ -52,6 +52,7 @@ watch(
},
{
immediate: true,
deep: true,
}
);
</script>