https://github.com/harryy2510/vue-datepicker
https://github.com/harryy2510/vue-datepicker
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/harryy2510/vue-datepicker
- Owner: harryy2510
- License: mit
- Created: 2019-05-14T10:33:42.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-05-14T12:30:52.000Z (about 6 years ago)
- Last Synced: 2025-01-29T11:37:49.714Z (5 months ago)
- Language: JavaScript
- Size: 969 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Vue Datepicker Component
Vue.js component for [Flatpickr](https://chmln.github.io/flatpickr/) datepicker
## Installation
```bash
# npm
npm install @harryy/vue-flatpickr --save# Yarn
yarn add @harryy/vue-flatpickr
```## Usage
#### Minimal example
```html
import datepicker from '@harryy/datepicker';
export default {
data () {
return {
date: null,
}
},
components: {
datepicker
}
}```
## Events
```html```