├── .gitignore
├── README.md
├── babel.config.js
├── build
├── demo.html
├── vueye-datepicker.common.js
├── vueye-datepicker.common.js.map
├── vueye-datepicker.umd.js
├── vueye-datepicker.umd.js.map
├── vueye-datepicker.umd.min.js
└── vueye-datepicker.umd.min.js.map
├── dist
├── favicon.ico
├── index.html
└── js
│ ├── app.15466a3f.js
│ ├── app.15466a3f.js.map
│ ├── chunk-vendors.1fcb0a92.js
│ └── chunk-vendors.1fcb0a92.js.map
├── package-lock.json
├── package.json
├── public
├── favicon.ico
└── index.html
├── src
├── App.vue
├── assets
│ └── vueye.png
├── components
│ ├── @use
│ │ └── useDate.js
│ ├── Days.vue
│ ├── Helpers
│ │ └── index.js
│ ├── Months.vue
│ ├── VueyeDatepicker.vue
│ ├── Years.vue
│ ├── icons
│ │ ├── Calendar.vue
│ │ ├── ChevronLeft.vue
│ │ ├── ChevronRight.vue
│ │ ├── Close.vue
│ │ └── index.js
│ └── style.scss
└── main.js
└── vue.config.js
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | node_modules
3 |
4 |
5 |
6 | # Log files
7 | npm-debug.log*
8 | yarn-debug.log*
9 | yarn-error.log*
10 |
11 | # Editor directories and files
12 | .idea
13 | .vscode
14 | *.suo
15 | *.ntvs*
16 | *.njsproj
17 | *.sln
18 | *.sw*
19 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Vueye Datepicker
2 |
3 | It's a simple date picker created using Vue.js and the vue-composition-api plugin
4 |
5 | # Installation
6 |
7 | npm i vueye-datepicker --save
8 |
9 | # Usage
10 |
11 | ```js
12 |
13 |
\r\n {{date}}\r\n\r\n
9 | {{date}} 10 |11 |