Skip to content

Commit

Permalink
<update>(doc): input
Browse files Browse the repository at this point in the history
  • Loading branch information
AmyFoxFN committed Feb 22, 2018
1 parent b43e868 commit 9f8ddb5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions document/components/docs/en-US/input.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Input component. You can use the `v-model` directive to create two-way data bind
:disabled="disabled"
:autofocus="autofocus"
:autocomplete="autocomplete"
:clearable="useClear"
:clearable="clearable"
></cube-input>
```

Expand All @@ -52,7 +52,7 @@ Input component. You can use the `v-model` directive to create two-way data bind
disabled: true,
autofocus: true,
autocomplete: true,
useClear: false
clearable: false
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions document/components/docs/zh-CN/input.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
:disabled="disabled"
:autofocus="autofocus"
:autocomplete="autocomplete"
:clearable="useClear"
:clearable="clearable"
></cube-input>
```
```javascript
Expand All @@ -51,7 +51,7 @@
disabled: true,
autofocus: true,
autocomplete: true,
useClear: false
clearable: false
}
}
}
Expand Down

0 comments on commit 9f8ddb5

Please sign in to comment.