Merge pull request #3252 from asyyy/issu-3251

Slider : fix undefined modelValue in slider
pull/3290/head
Bahadır 2022-11-17 14:46:29 +03:00 committed by GitHub
commit 4035d01764
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ export default {
this.dragging = true;
this.updateDomData();
if (this.range && this.modelValue[0] === this.max) {
if (this.range && this.value[0] === this.max) {
this.handleIndex = 0;
}
else {