_contact_me
_form
Feel free to contact me
for work
for work
Please enter your request name
Please enter valid email
const form = reactive({
name: "",
email: "",
message: ""
});
function onSubmit() {
Email.send(form)
.then(/* Send reply back to contact */)
.catch(/* Inform error */)
}