next/pages/logout.vue

13 lines
245 B
Vue

<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>