Open thefubon opened 3 years ago
You could do something like this inside of your x-init
/ init
function:
init() {
setInterval(() => {
if (this.selected === this.images.length - 1) {
this.selected = 0
} else {
this.selected++
}
}, 1000)
}
Please tell me how to add a timer to switch slides in this slider?