Add missing files in last two commits

This commit is contained in:
Eli Ribble 2026-04-16 17:15:44 +00:00
parent 81e057b900
commit d047c460ed
No known key found for this signature in database
3 changed files with 36 additions and 0 deletions

15
ts/view/Signout.vue Normal file
View file

@ -0,0 +1,15 @@
<template>
<p>signing out...</p>
</template>
<script setup lang="ts">
import { onMounted } from "vue";
import { router } from "@/router";
import { useSessionStore } from "@/store/session";
const session = useSessionStore();
onMounted(() => {
session.signout().then(() => {
router.push("/signin");
});
});
</script>