Commit bc56b632bc871affd87d7ee6e76df3662aa7533b
1 parent
9013c49d
fix #5583
Showing
1 changed file
with
6 additions
and
0 deletions
Show diff stats
src/components/slider/slider.vue
... | ... | @@ -8,6 +8,7 @@ |
8 | 8 | :step="step" |
9 | 9 | :value="exportValue[0]" |
10 | 10 | :disabled="disabled" |
11 | + :active-change="activeChange" | |
11 | 12 | @on-change="handleInputChange"></Input-number> |
12 | 13 | <div |
13 | 14 | :class="[prefixCls + '-wrap']" |
... | ... | @@ -148,6 +149,11 @@ |
148 | 149 | }, |
149 | 150 | name: { |
150 | 151 | type: String |
152 | + }, | |
153 | + // 3.4.0 | |
154 | + activeChange: { | |
155 | + type: Boolean, | |
156 | + default: true | |
151 | 157 | } |
152 | 158 | }, |
153 | 159 | data () { | ... | ... |