This commit is contained in:
2025-12-10 04:49:51 +00:00
parent 384bc1a302
commit e4c6af5690
4 changed files with 4 additions and 7 deletions

View File

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