vue-week-picker-en
Version:
A Vue.js project
50 lines (38 loc) • 1.08 kB
Markdown
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

Vue component example,[Link](https://github.com/chengheai/daily-vue-demo/blob/master/src/components/Calendar.vue)

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