Date / Time picker

A lightweight and powerful date / time picker component.

Finder component
You can alter date / time picker behaviour via flexible data API.
data-datepicker-options = '{}':
To see all available options visit:https://flatpickr.js.org/options/
Usage examples:https://flatpickr.js.org/examples/

Date picker

<!-- Date picker -->
                                        <label class="form-label">Choose date</label>
                                        <div class="input-group">
                                        <flat-pickr v-model="date" class="form-control rounded pe-5" placeholder="Choose date" name="date" />
                                        <i class="fi-calendar position-absolute top-50 end-0 translate-middle-y me-3"></i>
                                        </div>
Top