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.
16 lines
350 B
16 lines
350 B
<template>
|
|
<div>
|
|
<p class="px-8 pt-8 text-center text-2xl">
|
|
{{ $t('setup.messageWelcome.whatIs') }}
|
|
</p>
|
|
<NuxtLink to="/setup/3"><BaseButton>Continue</BaseButton></NuxtLink>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
definePageMeta({
|
|
layout: 'setup',
|
|
});
|
|
const setupStore = useSetupStore();
|
|
setupStore.setStep(2);
|
|
</script>
|
|
|