fix(ui): [WIP] Logout page link button
This commit is contained in:
parent
d0cea0fdf4
commit
22951de0fb
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue