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
Source:stackexchange.com