Has anyone had any luck using v-date-picker in custom modules?
When I try and listen to the emits it always returns null and the close is never called.
quick EX
<v-menu ref="dateTimeMenu" :close-on-content-click="false" attached :disabled="false" full-height seamless>
<template #activator="{ toggle, active }">
<v-input
:active="active"
:model-value="this.dateNow"
clickable
readonly
@click="toggle"
>
</v-input>
</template>
<v-date-picker
:model-value="this.dateNow"
v-on:update:model-value="setVal"
v-on:close="log('Closed')"
/>
</v-menu>