[Vuejs]-Input range slider on thumb/pointer move complete fire event

0๐Ÿ‘

โœ…

I have fixed it by adding 2 method, one for normal browser & other for IE using @mouseup

<input @change="myFunction($event)" @mouseup="myFunctionIE($event)" type="range" min="0" max="10" step="1" v-model="param7"  class="slider-color">

and now function

myFunction:function(e) {
  if(IE){
    return false;
  }
}

for IE

myFunctionIE:function(e) {
  if(!IE){
    return false;
  }
}

So I put same code but with different name function & its working as required

Leave a comment