- Mobile menu now shows for small and extra-small windows, with the traditional menu showing above those breakpoints (landscape on larger mobile, desktop) - The back-end is now running on .NET 6 RC 1. - Use existing library code for page title vs. hand-rolled component
22 lines
524 B
Vue
22 lines
524 B
Vue
<template lang="pug">
|
|
article
|
|
p
|
|
p.fst-italic Logging off…
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { onMounted } from "vue"
|
|
import { useRouter } from "vue-router"
|
|
import { toastSuccess } from "@/components/layout/AppToaster.vue"
|
|
import { useStore, Mutations } from "@/store"
|
|
|
|
const store = useStore()
|
|
const router = useRouter()
|
|
|
|
onMounted(() => {
|
|
store.commit(Mutations.ClearUser)
|
|
toastSuccess("Log Off Successful | <strong>Have a Nice Day!</strong>")
|
|
router.push("/")
|
|
})
|
|
</script>
|