[Doc] Field: add name prop (#450)

This commit is contained in:
neverland 2018-08-21 16:16:00 +08:00 committed by GitHub
parent db76bdeef6
commit efd6e9a4fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
const nativeBehaviors = require('./behaviors');
const buttonBehaviors = require('../behaviors/button');
const classnames = require('../common/classnames');
const observer = function() {
@ -12,7 +12,7 @@ Component({
externalClasses: ['custom-class', 'loading-class'],
behaviors: [nativeBehaviors],
behaviors: [buttonBehaviors],
properties: {
type: {

View File

@ -123,6 +123,7 @@
| 参数 | 说明 | 类型 | 默认值 |
|-----------|-----------|-----------|-------------|-------------|
| name | 标识符 | `String` | - |
| label | 输入框左侧文本 | `String` | - |
| value | 当前输入的值 | `String | Number` | - |
| type | 可设置为任意原生类型, 如 `number` `idcard` `textarea` `digit` | `String` | `text` |