File tree 2 files changed +3
-5
lines changed
2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -140,9 +140,7 @@ export default {
140
140
tabBarExtraContent,
141
141
renderTabBar : renderTabBarSlot ,
142
142
} ,
143
- on : {
144
- ...this . $listeners ,
145
- } ,
143
+ on : this . $listeners ,
146
144
} ;
147
145
const contentCls = {
148
146
[ `${ prefixCls } -${ tabPosition } -content` ] : true ,
Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ export default function createSlider(Component) {
190
190
} ,
191
191
onClickMarkLabel ( e , value ) {
192
192
e . stopPropagation ( ) ;
193
- this . onChange ( { value } ) ;
193
+ this . onChange ( { sValue : value } ) ;
194
194
this . onEnd ( ) ;
195
195
} ,
196
196
getSliderStart ( ) {
@@ -294,7 +294,7 @@ export default function createSlider(Component) {
294
294
min,
295
295
className : `${ prefixCls } -mark` ,
296
296
} ,
297
- listeners : {
297
+ on : {
298
298
clickLabel : disabled ? noop : this . onClickMarkLabel ,
299
299
} ,
300
300
} ;
You can’t perform that action at this time.
0 commit comments