## Project setup ``` npm install vuetifyz-date-rangepicker --save ```
npm install vuetifyz-date-rangepicker
npm install vuetifyz-date-rangepicker --save
`
Project Demo Website
`
https://vue-date-range-picker.herokuapp.com/
`Usage in Vue Application
There are two ways to import the npm in our project.
Global
Local
1. Global way of declearing the Component
Do this in your main.js
import VueDateRangePicker from 'vuetifyz-date-rangepicker'
Vue.component("date-picker",VueDateRangePicker)
After this in any .vue file you can use it.
##Example:1
`
`1. Local way of declearing the Component
Do this in your script files ie. in every script file you need it(Since it is not global you have to do this in every vue file you are going to need the date picker)
import VueDateRangePicker from 'vuetifyz-date-rangepicker'
##Example:2
`
`
##Example:3 (min,max can be defined for the date range)
`
``





Make sure that you should unselect the selected date before initiating to next date selection.