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