修复文档错误 (#213)

This commit is contained in:
Yao 2018-05-02 14:20:51 +08:00 committed by GitHub
parent 518fc2937f
commit 576d90dabd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 4 deletions

View File

@ -20,12 +20,13 @@ field 支持多种展示方式,在 `data` 中传入对应的设置即可。
placeholder="{{ field.placeholder }}"
focus="{{ field.focus }}"
value="{{ field.value }}"
bind:change="handleFieldChange"
>
</zan-field>
```
```js
Page(extend({}, {
Page({
data: {
field: {
focus: true,
@ -34,7 +35,7 @@ Page(extend({}, {
value: 'test'
}
}
}));
});
```
#### 监听事件

View File

@ -15,7 +15,7 @@
#### 基础用法
`Stepper` 组件通过传入的 stepper 对象控制,内部数据格式如下:
```js
Page(extend({}, {
Page({
data: {
stepper: {
// 当前 stepper 数字
@ -35,7 +35,7 @@ Page(extend({}, {
stepper
});
}
}));
});
```
当一个 `Stepper`min 超过 max就会导致组件被置灰。