0

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?

card list

1
  • how about this Commented Dec 23, 2020 at 19:37

1 Answer 1

1

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"
});
Sign up to request clarification or add additional context in comments.

1 Comment

Got your idea, thanks. I think it'd be better to use $refs instead of touching DOM that way

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.