owltide/components/ButtonLogOut.vue

12 lines
286 B
Vue
Raw Permalink Normal View History

<!--
SPDX-FileCopyrightText: © 2025 Hornwitser <code@hornwitser.no>
SPDX-License-Identifier: AGPL-3.0-or-later
-->
<template>
<button type="button" @click="sessionStore.logOut">Log out</button>
</template>
<script setup lang="ts">
const sessionStore = useSessionStore();
</script>