docs(DatePicker): fix basic usage

This commit is contained in:
chenjiahan 2022-08-28 11:01:49 +08:00
parent 61ef6b9a98
commit 66aa2906e0
2 changed files with 12 additions and 2 deletions

View File

@ -21,7 +21,12 @@ app.use(DatePicker);
### Basic Usage
```html
<van-date-picker v-model="currentDate" title="Choose Date" />
<van-date-picker
v-model="currentDate"
title="Choose Date"
:min-date="minDate"
:max-date="maxDate"
/>
```
```js

View File

@ -23,7 +23,12 @@ app.use(DatePicker);
通过 `v-model` 绑定当前选中的日期,通过 `min-date``max-date` 属性来设定可选的时间范围。
```html
<van-date-picker v-model="currentDate" title="选择日期" />
<van-date-picker
v-model="currentDate"
title="选择日期"
:min-date="minDate"
:max-date="maxDate"
/>
```
```js