An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

        

# VDateSelector
Simple Date Picker/Date Selector/Calendar in Vue

[
![npm](https://img.shields.io/npm/v/v-date-selector.svg)
![bundlephobia](https://img.shields.io/bundlephobia/minzip/v-multi-select.svg?style=flat)
![npm](https://img.shields.io/npm/dm/v-date-selector.svg)
](https://www.npmjs.com/package/v-date-selector)
[![vue2](https://img.shields.io/badge/vue-2.x-brightgreen.svg)](https://vuejs.org/)

![](.demo.png)

## 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