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.
 
 
 
 
 

23 lines
381 B

<template>
<div>
<p class="text-lg p-8 text-center">
{{ $t('setup.messageSetupValidation') }}
</p>
</div>
</template>
<script setup lang="ts">
const emit = defineEmits(['validated']);
const props = defineProps<{
next: boolean;
}>();
const next = toRef(props, 'next');
watch(next, (newVal) => {
if (newVal) {
emit('validated', null);
}
});
</script>