nathanreyes / v-calendar

An elegant calendar and datepicker plugin for Vue.

Home Page:https://vcalendar.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

WeiShen68 opened this issue · comments

<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>