Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
Element
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
CI / CD Analytics
Repository Analytics
Value Stream Analytics
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
林焕东
Element
Commits
d8c93127
Commit
d8c93127
authored
Feb 04, 2018
by
Yao
Committed by
杨奕
Feb 04, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Input: fix prop valueKey doc (#9649)
parent
896cbb63
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
9 deletions
+9
-9
examples/docs/en-US/input.md
examples/docs/en-US/input.md
+1
-1
examples/docs/es/input.md
examples/docs/es/input.md
+7
-7
examples/docs/zh-CN/input.md
examples/docs/zh-CN/input.md
+1
-1
No files found.
examples/docs/en-US/input.md
View file @
d8c93127
...
...
@@ -689,7 +689,7 @@ Attribute | Description | Type | Options | Default
|----| ----| ----| ---- | -----|
|placeholder| the placeholder of Autocomplete| string | — | — |
|disabled | whether Autocomplete is disabled | boolean | — | false|
| value
K
ey | key name of the input suggestion object for display | string | — | value |
| value
-k
ey | key name of the input suggestion object for display | string | — | value |
|icon | icon name | string | — | — |
|value | binding value | string | — | — |
| debounce | debounce delay when typing, in milliseconds | number | — | 300 |
...
...
examples/docs/es/input.md
View file @
d8c93127
...
...
@@ -41,13 +41,13 @@
querySearch(queryString, cb) {
var links = this.links;
var results = queryString ? links.filter(this.createStateFilter(queryString)) : links;
cb(results);
},
querySearchAsync(queryString, cb) {
var links = this.links;
var results = queryString ? links.filter(this.createStateFilter(queryString)) : links;
clearTimeout(this.timeout);
this.timeout = setTimeout(() => {
cb(results);
...
...
@@ -106,17 +106,17 @@
}
.demo-autocomplete {
text-align: center;
.sub-title {
margin-bottom: 10px;
font-size: 14px;
color: #8492a6;
}
.el-col:not(:last-child) {
border-right: 1px solid rgba(224,230,237,0.50);
}
.el-autocomplete {
text-align: left;
}
...
...
@@ -126,7 +126,7 @@
li {
line-height: normal;
padding: 7px
*
;
.name {
text-overflow: ellipsis;
overflow: hidden;
...
...
@@ -668,7 +668,7 @@ Atributo | Descripción | Tipo | Opciones | Por defecto
|----| ----| ----| ---- | -----|
|placeholder| el placeholder del Autocomplete| string | — | — |
|disabled | si el Autocompete esta deshabilitado | boolean | — | false|
| value
K
ey | nombre del campo del objeto de sugerencia del input para la visualización | string | — | value |
| value
-k
ey | nombre del campo del objeto de sugerencia del input para la visualización | string | — | value |
|icon | nombre del icono | string | — | — |
|value | valor enlazado | string | — | — |
| debounce | retardo al escribir, en milisegundos | number | — | 300 |
...
...
examples/docs/zh-CN/input.md
View file @
d8c93127
...
...
@@ -848,7 +848,7 @@ export default {
|------------- |---------------- |---------------- |---------------------- |-------- |
| placeholder | 输入框占位文本 | string | — | — |
| disabled | 禁用 | boolean | — | false |
| value
K
ey | 输入建议对象中用于显示的键名 | string | — | value |
| value
-k
ey | 输入建议对象中用于显示的键名 | string | — | value |
| value | 必填值,输入绑定值 | string | — | — |
| debounce | 获取输入建议的去抖延时 | number | — | 300 |
| fetch-suggestions | 返回输入建议的方法,仅当你的输入建议数据 resolve 时,通过调用 callback(data:
[]
) 来返回它 | Function(queryString, callback) | — | — |
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment