Reputation: 61
I need to implement card-list with scroll down button in Vuejs. What's the best way to do that? What npm packages I can use?
Upvotes: 0
Views: 592
Reputation: 26
Put id = "content" in the parent div and on the button you call the scroll function
const containerMovie = document.getElementById("content");
containerMovie.scrollBy({
top: -600,
left: 0,
behavior: "smooth"
});
Upvotes: 1