UNPKG

vue-week-picker-en

Version:
50 lines (38 loc) 1.08 kB
I've just translated from Chinese to English https://github.com/chengheai # vue-week-picker > vue-week-picker ## Installation ``` bash npm install vue-week-picker --save ``` ## DEMO * Native [DEMO](https://chengheai.github.io/daily-vue-demo/#/calendar1) * Element Ui [DEMO](https://chengheai.github.io/daily-vue-demo/#/calendar) ## Features * Week switch * Use with DatePicker ## Use with Element-ui ## Example ![](https://github.com/chengheai/review-demo-image/blob/master/2019-01-15%2014-03-05.2019-01-15%2014_03_49.gif?raw=true) Vue component example,[Link](https://github.com/chengheai/daily-vue-demo/blob/master/src/components/Calendar.vue) ![](https://github.com/chengheai/review-demo-image/blob/master/2019-01-15%2014-00-09.2019-01-15%2014_01_04.gif?raw=true) ## How to Use ``` javascript <VueWeekPicker @dateValue="dateValue" /> Or <vue-week-picker @dateValue="dateValue" /> import VueWeekPicker from 'vue-week-picker'; export default { components: { VueWeekPicker } } Or export default { components: { 'vue-week-picker': VueWeekPicker } } ```