πŸ“ ζ›΄ζ–°ζ‰€ζœ‰ι“ΎζŽ₯θ‡³ζ–°ηš„εŸŸε "liteyuki.org"
Some checks failed
Docker Image Build / build (push) Failing after 7s
Pre-commit checks / pre-commit (3.11) (push) Failing after 1m57s
Deploy VitePress site to Liteyuki PaaS / build (push) Failing after 2m14s
Pre-commit checks / pre-commit (3.13) (push) Failing after 3m21s
Pre-commit checks / pre-commit (3.12) (push) Failing after 3m23s
Pre-commit checks / pre-commit (3.10) (push) Failing after 14m32s

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;