https://github.com/joaoeudes7/v-date-selector
Simple Date Picker/Date Selector/Calendar in Vue
https://github.com/joaoeudes7/v-date-selector
Last synced: 5 days ago
JSON representation
Simple Date Picker/Date Selector/Calendar in Vue
- Host: GitHub
- URL: https://github.com/joaoeudes7/v-date-selector
- Owner: joaoeudes7
- Created: 2019-02-10T02:13:28.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-01-31T05:24:04.000Z (over 5 years ago)
- Last Synced: 2025-05-31T03:08:47.788Z (16 days ago)
- Language: Vue
- Homepage:
- Size: 191 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# VDateSelector
Simple Date Picker/Date Selector/Calendar in Vue[



](https://www.npmjs.com/package/v-date-selector)
[](https://vuejs.org/)
## Table of contents
- [Installation](#installation)
- [Usage](#usage)
- [Demo](#demo)# Installation
```bash
yarn add v-date-selector
```
# Usage
```vue
import VDateSelector from 'v-date-selector'
export default {
name: 'app',
components: {
VDateSelector
},
data: () => ({
date: new Date('1/1/2019')
}),
mounted() {
console.log(VDateSelector)
}
}```
# Demo