2025-06-30 18:58:24 +02:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: © 2025 Hornwitser <code@hornwitser.no>
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
-->
|
2025-03-07 21:46:44 +01:00
|
|
|
<template>
|
2025-05-24 17:53:33 +02:00
|
|
|
<button type="button" @click="sessionStore.logOut">Log out</button>
|
2025-03-07 21:46:44 +01:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
2025-05-24 17:53:33 +02:00
|
|
|
const sessionStore = useSessionStore();
|
2025-03-07 21:46:44 +01:00
|
|
|
</script>
|