fix(ui): [WIP] Logout page link button

This commit is contained in:
ArneBo 2024-12-30 12:53:04 +01:00 committed by upsiflu
parent d0cea0fdf4
commit 22951de0fb
1 changed files with 4 additions and 2 deletions

View File

@ -6,6 +6,7 @@ import { useStore } from '~/store'
import Button from '~/components/ui/Button.vue'
import Spacer from '~/components/ui/layout/Spacer.vue'
import Alert from '~/components/ui/Alert.vue'
import Link from '~/components/ui/Link.vue'
const store = useStore()
const { t } = useI18n()
@ -45,13 +46,14 @@ const labels = computed(() => ({
<h2>
{{ t('components.auth.Logout.header.unauthenticated') }}
</h2>
<Button
<Link
solid
primary
buttonWidth
to="/login"
>
{{ t('components.auth.Logout.link.login') }}
</Button>
</Link>
</Alert>
</main>
</template>