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.
19 lines
426 B
19 lines
426 B
<template>
|
|
<div class="flex flex-col items-center">
|
|
<p class="px-8 text-center text-2xl">
|
|
{{ $t('setup.welcomeDesc') }}
|
|
</p>
|
|
<NuxtLink to="/setup/2" class="mt-8">
|
|
<BaseButton as="span">{{ $t('general.continue') }}</BaseButton>
|
|
</NuxtLink>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
definePageMeta({
|
|
layout: 'setup',
|
|
});
|
|
|
|
const setupStore = useSetupStore();
|
|
setupStore.setStep(1);
|
|
</script>
|
|
|