@change event is not firing in vue 3 with rangeslider. How to fix it ?
rosudel opened this issue · 0 comments
rosudel commented
In vue 3, while I slide/change the the slider value @change event is not firing. How to solve this issue.
`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)"
/>`