vue-day-picker

1.0.9 • Public • Published

Vue Day Picker

NPM License

Lightweight date picker component for Vue < 5k 😎
Emits the date selected to parent component

date-select

Usage

npm i vue-day-picker

<script setup>
import DayPicker from 'vue-day-picker

const calendarOptions = {
  initialDate: '2018-07-22',
  minDate: '2018-01-01',
  maxDate: '2018-12-31',
};

function handleDateSelected(date) {
  //todo
}
</script>


<template>
<DayPicker :calendar-options="calendarOptions" @select-date="handleDateSelected"/>
</template

Contact

Feel free to ping me 💫
connect@giladshohat.com

giladshohat.com

Package Sidebar

Install

npm i vue-day-picker

Weekly Downloads

1

Version

1.0.9

License

MIT

Unpacked Size

3.29 kB

Total Files

4

Last publish

Collaborators

  • gshohat