Slider stop working when I enable arrows to false
Closed this issue · 0 comments
urfusion commented
This is how I am returing the data
data() {
this.News_list = JSON.parse(this.news);
News_list: JSON.parse(this.news);
return {
slickOptions: {
slidesToShow: 1,
infinite: true,
autoplay: true,
arrows: false,
autoplaySpeed: 2000,
// Any other options that can be got from plugin documentation
},
};
},
All code working fine untill I added `arrows` to false. And it's also not working when only slide there.