0.1.0 • Published 3 years ago

@xquick-code/vue3-datepicker v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

Vue 3 Datepicker

This is a basic (at least for now) reimplementation of https://github.com/icehaunter/vuejs-datepicker in Vue 3 and with greatly cleaned up code.

All date manipulation and formatting are done via the amazing date-fns library, so it's a direct dependency of this picker.

Installation

Package is available on NPM: https://www.npmjs.com/package/vue3-datepicker

npm i vue3-datepicker

The component is packaged mainly for use with bundlers, if you require a browser build - post an issue.

Usage

<template>
  <datepicker
    v-model="selected"
    :locale="locale"
    :upperLimit="to"
    :lowerLimit="from"
  />
</template>

Props and attributes

Attribute fallthrough is enabled, so any attribute you apply to the component will be passed down to the input.

All props which accept formatting strings for dates use date-fns formatting function under the hood, so see that function's documentation for patterns.

Main interaction to date selection is done via v-model with Date as expected type of the value passed.

IDTypeDefaultDescription
upperLimitDateUpper limit for available dates for picking
lowerLimitDateLower limit for available dates for picking
startingView'day' \| 'month' \| 'year''day'View on which the date picker should open. Can be either year, month, or day
monthHeadingFormatStringLLLL yyyydate-fns-type formatting for a month view heading
weekdayFormatStringEEdate-fns-type formatting for a line of weekdays on day view
inputFormatStringyyyy-MM-dddate-fns-type format in which the string in the input should be both parsed and displayed
localeLocaledate-fns/locale/endate-fns locale object. Used in string formatting (see default monthHeadingFormat)
weekStartsOnNumber1Day on which the week should start. Number from 0 to 6, where 0 is Sunday and 6 is Saturday. Week starts with a Monday (1) by default