nathanreyes / v-calendar

An elegant calendar and datepicker plugin for Vue.
https://vcalendar.io
MIT License
4.32k stars 840 forks source link

How to disable slot content popover to hide once date is selected? #1432

Open WeiShen68 opened 5 months ago

WeiShen68 commented 5 months ago
<template>
  <VDatePicker v-model="date">
    <template v-slot="{ inputValue, inputEvents }">
        <v-text-field
          :value="inputValue"
          v-on="inputEvents"
         >
        </v-text-field>
    </template>
  </DatePicker>
</template>

<script setup>
import { ref } from 'vue';
const date = ref(new Date());
</script>