Slider: fix #15545 by adding explains about "input" event in Chinese (#15588)

Slider: add explains about "input" event (#15545)
pull/16159/head
VanMess 2019-06-24 11:32:53 +08:00 committed by WaSheep
parent 8cdbb861a4
commit c6d1e032b6
5 changed files with 5 additions and 1 deletions

View File

@ -237,4 +237,5 @@ Selecting a range of values is supported.
| Event Name | Description | Parameters | | Event Name | Description | Parameters |
|---------- |-------- |---------- | |---------- |-------- |---------- |
| change | triggers when the value changes (if the mouse is being dragged, this event only fires when the mouse is released) | value after changing | | change | triggers when the value changes (if the mouse is being dragged, this event only fires when the mouse is released) | value after changing |
| input | triggers when the data changes (It'll be emitted in real time during sliding) | value after changing |

View File

@ -239,4 +239,5 @@ Se soporta la selección de un rango de valores.
| Nombre | Descripción | Parametros | | Nombre | Descripción | Parametros |
| ------ | ---------------------------------------- | ------------------------ | | ------ | ---------------------------------------- | ------------------------ |
| change | se dispara cuando el valor cambia (si el ratón está comenzando el arrastre este evento sólo se disparara cuando se suelte el ratón) | valor despues del cambio | | change | se dispara cuando el valor cambia (si el ratón está comenzando el arrastre este evento sólo se disparara cuando se suelte el ratón) | valor despues del cambio |
| input | triggers when the data changes (It'll be emitted in real time during sliding) | value after changing |

View File

@ -237,3 +237,4 @@ Vous pouvez sélectionner des intervalles de valeurs au lieu d'une valeur unique
| Nom | Description | Paramètres | | Nom | Description | Paramètres |
|---------- |-------- |---------- | |---------- |-------- |---------- |
| change | Se déclenche quand la valeur change (si le changement est fait à la souris, se déclenche quand la souris redevient immobile). | La nouvelle valeur. | | change | Se déclenche quand la valeur change (si le changement est fait à la souris, se déclenche quand la souris redevient immobile). | La nouvelle valeur. |
| input | triggers when the data changes (It'll be emitted in real time during sliding) | value after changing |

View File

@ -234,3 +234,4 @@
| 事件名称 | 说明 | 回调参数 | | 事件名称 | 说明 | 回调参数 |
|---------- |-------- |---------- | |---------- |-------- |---------- |
| change | 值改变时触发(使用鼠标拖曳时,只在松开鼠标后触发) | 改变后的值 | | change | 值改变时触发(使用鼠标拖曳时,只在松开鼠标后触发) | 改变后的值 |
| input | 数据改变时触发(使用鼠标拖曳时,活动过程实时触发) | 改变后的值 |

View File

@ -13,7 +13,7 @@
v-if="showInput && !range" v-if="showInput && !range"
class="el-slider__input" class="el-slider__input"
ref="input" ref="input"
@change="$nextTick(emitChange)" @change="emitChange"
:step="step" :step="step"
:disabled="sliderDisabled" :disabled="sliderDisabled"
:controls="showInputControls" :controls="showInputControls"