After clicking on the racing lantern effect of the mobile element-ui, how to continue to broadcast for a period of time?

such as the title, the element-ui racing lantern effect is used for the first time, but it is found that the rotation stops after each click on the mobile side, which is not the case on the PC side. Excuse me, how to achieve automatic rotation again after a period of time?

Nov.17,2021

Mobile devices are recommended not to use elementui carousel components. Please see better-scroll


element-ui is mainly PC-oriented. Why not change to a mint-ui?


after clicking on the mobile terminal, you can consider adding a timer and adjusting the switching method of element

.
this.carouselPlay = setInterval(() => {     // autoplay
    this.$refs.carousel.next();
}, 5000);  
Menu