feat(pages): create logout page

This commit is contained in:
☙◦ The Tablet ❀ GamerGirlandCo ◦❧ 2023-10-10 22:37:40 -04:00
parent dd97a220f5
commit c67f1bcfb1
Signed by: tablet
GPG Key ID: 924A5F6AF051E87C

12
pages/logout.vue Normal file
View File

@ -0,0 +1,12 @@
<script lang="ts" setup>
definePageMeta({
middleware: ["auth"],
});
const { signOut } = useAuth();
signOut({
callbackUrl: "/",
});
</script>
<template>
<a-typography-title :level="3"> Signed out. 👋 </a-typography-title>
</template>