icehaunter / vue3-datepicker

Simple datepicker component for Vue 3
https://icehaunter.github.io/vue3-datepicker/
MIT License
150 stars 153 forks source link

Time picker not replacing the Day picker #109

Closed MathBeaudoin closed 1 year ago

MathBeaudoin commented 1 year ago

When using the component, the Time picker does not seem to replace the calendar?

<template>
   <DatePicker v-model="dateRef" format="yyyy-MM-dd  HH:mm" week-start="0" minutes-increment="5"/>
</template

<script setup lang="ts>
// Components
import DatePicker from '@vuepic/vue-datepicker';
import '@vuepic/vue-datepicker/dist/main.css'
</script

This will display the following when trying to use the Time picker. An obviously unusable Time picker.