Replace the convoluted useAccountSession composable with a pinia store that in addition allows for the consolidation of all session related functions to grouped into one module.
7 lines
168 B
Vue
7 lines
168 B
Vue
<template>
|
|
<button type="button" @click="sessionStore.logOut">Log out</button>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const sessionStore = useSessionStore();
|
|
</script>
|