feat: 接口统一优化

This commit is contained in:
2026-05-23 13:45:58 +08:00
parent a3b1fba3ea
commit 7d68db723b
20 changed files with 302 additions and 302 deletions
+2 -2
View File
@@ -17,9 +17,9 @@ import { useAuthStore } from "@/stores/auth";
const colorMode = useColorMode();
const isDark = computed(() => colorMode.value === "dark");
function toggleColorMode() {
const toggleColorMode = () => {
colorMode.value = isDark.value ? "light" : "dark";
}
};
const authStore = useAuthStore();