I'm using rangeslider.js plugin for a custom slider. In vue 3, while I slide/change the the slider value @change event is not firing. How to solve this issue.
HTML:
data(){
return{
}
},
methods:{
updateChart(chartId, point){
//will do something
}
},
created(){
},
mounted(){
}
<input
type="range"
min="0"
max="10"
name="rating"
id="rating"
step="1"
data-ratingslider="true"
value="0"
autocomplete="off"
@change="updateChart(rating)"
/>
applying event dispatch has solved the issue for me.
}