Jun 22, 2023
0
Level 1
v$ returning no value in vuelidate
I'm using vuelidate package for client-side validation but v$ returning nothing
import { required, email } from '@vuelidate/validators'
export default {
setup () {
return { v$: useVuelidate() }
},
mounted() {
console.log("counter " + this.v$);
},
~~~Here is code
Please or to participate in this conversation.