This commit is contained in:
2025-12-10 04:51:51 +00:00
parent e4c6af5690
commit e7f774cbeb

View File

@@ -6,7 +6,7 @@ export const useAuthStore = defineStore("auth", () => {
const user = ref({});
checkToken();
const loggedIn = computed(() => !!user.username);
const loggedIn = computed(() => !!user.value.username);
async function logOut() {
try {