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.
 
 
 
 
 

24 lines
477 B

<template>
<div >
<ClientOnly>
</ClientOnly>
</div>
</template>
<script setup lang="ts">
import { ref } from "vue";
const checkForm = (event: Event) => {
event.target.classList.add("was-validated");
};
const input1 = ref("Mark");
const input2 = ref("Otto");
const input3 = ref("");
const input4 = ref("");
const input5 = ref("");
const checkbox1 = ref(false);
</script>