mirror of https://github.com/ElemeFE/element
Select: add focus listener (#1193)
parent
63b465086d
commit
dd08623526
|
@ -1068,7 +1068,7 @@ Customize table column so it can be integrated with other components.
|
|||
| Attribute | Description | Type | Accepted Values | Default |
|
||||
|---------- |-------------- |---------- |-------------------------------- |-------- |
|
||||
| data | table data | array | — | — |
|
||||
| height | table's height. By default | string/number | — | — |
|
||||
| height | Table's height. By default it has an auto height. If its value is a number, the height is measured in pixels; if its value is a string, the height is affected by external styles | string/number | — | — |
|
||||
| stripe | whether table is striped | boolean | — | false |
|
||||
| border | whether table has vertical border | boolean | — | false |
|
||||
| fit | whether width of column automatically fits its container | boolean | — | true |
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
:name="name"
|
||||
:disabled="disabled"
|
||||
:readonly="!filterable || multiple"
|
||||
@click.native="toggleMenu"
|
||||
@focus="toggleMenu"
|
||||
@keyup.native="debouncedOnInputChange"
|
||||
@keydown.native.down.prevent="navigateOptions('next')"
|
||||
@keydown.native.up.prevent="navigateOptions('prev')"
|
||||
|
|
Loading…
Reference in New Issue