File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -140,9 +140,7 @@ export default {
140140 tabBarExtraContent,
141141 renderTabBar : renderTabBarSlot ,
142142 } ,
143- on : {
144- ...this . $listeners ,
145- } ,
143+ on : this . $listeners ,
146144 } ;
147145 const contentCls = {
148146 [ `${ prefixCls } -${ tabPosition } -content` ] : true ,
Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ export default function createSlider(Component) {
190190 } ,
191191 onClickMarkLabel ( e , value ) {
192192 e . stopPropagation ( ) ;
193- this . onChange ( { value } ) ;
193+ this . onChange ( { sValue : value } ) ;
194194 this . onEnd ( ) ;
195195 } ,
196196 getSliderStart ( ) {
@@ -294,7 +294,7 @@ export default function createSlider(Component) {
294294 min,
295295 className : `${ prefixCls } -mark` ,
296296 } ,
297- listeners : {
297+ on : {
298298 clickLabel : disabled ? noop : this . onClickMarkLabel ,
299299 } ,
300300 } ;
You can’t perform that action at this time.
0 commit comments