You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi gabriel
I am ajay, i also face the same issue , i handled this issue by added this code snippet
on mounted please add this code and check it , i think this will solve your problem
let clearIntervalTime= setInterval(()=>{
if(document.getElementsByClassName('VueCarousel-dot')){
let ele=document.getElementsByClassName('VueCarousel-dot')
ele.forEach(event=>{
event.addEventListener("click", function(event){
event.preventDefault()
});
})
clearInterval(clearIntervalTime)
}
},500)
Having this issue as well. When clicking the pagination dots the page reloads.
The text was updated successfully, but these errors were encountered: