mirror of https://github.com/wg-easy/wg-easy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
387 B
17 lines
387 B
<template>
|
|
<div class="flex flex-col items-center">
|
|
<p>{{ $t('setup.successful') }}</p>
|
|
<NuxtLink to="/login" class="mt-4">
|
|
<BasePrimaryButton as="span">{{ $t('login.signIn') }}</BasePrimaryButton>
|
|
</NuxtLink>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
definePageMeta({
|
|
layout: 'setup',
|
|
});
|
|
|
|
const setupStore = useSetupStore();
|
|
setupStore.setStep(6);
|
|
</script>
|
|
|