Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/harryy2510/vue-datepicker
https://github.com/harryy2510/vue-datepicker
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/harryy2510/vue-datepicker
- Owner: harryy2510
- License: mit
- Created: 2019-05-14T10:33:42.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-05-14T12:30:52.000Z (over 5 years ago)
- Last Synced: 2024-12-10T20:06:47.622Z (22 days 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```