1
0
forked from bot/app

πŸ“ ζ›΄ζ–°ζ‰€ζœ‰ι“ΎζŽ₯θ‡³ζ–°ηš„εŸŸε "liteyuki.org"

This commit is contained in:
2025-06-16 00:29:03 +08:00
parent 6dc6e36bb3
commit cf7cb71464
13 changed files with 38 additions and 38 deletions

View File

@@ -3,13 +3,13 @@ import {ref} from "vue";
let total = ref(0);
let online = ref(0);
fetch("https://api.liteyuki.icu/count")
fetch("https://api.liteyuki.org/count")
.then(res => res.json())
.then(data => {
total.value = data.register;
})
.catch(err => console.error(err));
fetch("https://api.liteyuki.icu/online")
fetch("https://api.liteyuki.org/online")
.then(res => res.json())
.then(data => {
online.value = data.online;