import { defineComponent, computed, withModifiers } from 'vue'; import { Link, useForm } from '@inertiajs/inertia-vue3'; import GuestLayout from '@/Layouts/Guest'; import Button from '@/Components/Button'; export default defineComponent({ props: { status: String, }, setup(props) { const form = useForm(); const submit = () => { form.post(route('verification.send')); }; const verificationLinkSent = computed( () => props.status === 'verification-link-sent' ); return () => (
Thanks for signing up! Before getting started, could you verify your email address by clicking on the link we just emailed to you? If you didn't receive the email, we will gladly send you another.
{verificationLinkSent.value && (
A new verification link has been sent to the email address you provided during registration.
)}
Log Out
); }, });