I got a custom date picker with a nested text-field, i would like to know if there's any way to validate my component on the function this.$refs.form.validate().
My Component:
<template>
<v-menu
v-model="dateMenu"
:close-on-content-click="false"
offset-y
max-width="290"
>
<template v-slot:activator="{ on, attrs }">
<v-text-field
prepend-icon="mdi-calendar"
:label="label"
v-on="on"
v-bind="attrs"
v-model="dateFormatted"
readonly
clearable
:rules="rules"
:dense="dense"
></v-text-field>
</template>
<template default>
<v-date-picker
locale="es-AR"
v-model="date"
no-title
></v-date-picker>
</template>
</v-menu>
</template>