Skip to content
Advertisement

Horizontal scrolling for dynamic list

I need to scroll horizontally inside a lengthy list. It was possible when the list is statically implement as below.

JavaScript

But if we fetch the list via a loop it will not display inline even. So horizontal scrolling is not possible. My attempt is as below.

JavaScript

Where I was get wrong and how to resolve this?

Advertisement

Answer

The difference between your static example and your Vue example is, you are using v-for on the ul element. Therefore you will end up having something like this :

JavaScript

Try changing your vue template to

JavaScript

so you actually loop the li tag, not the ul tag.

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement