I have set up a v-list
using flex layout, where the v-list expands to fill the remaining space horizontally in a column. However, if the list contains many elements with a total height that exceeds the column's height, the list ends up sticking out of the container.
I attempted to add a max-height and fixed height to the v-list, but this resulted in the list items overflowing from the wrapper v-list
. Adding v-scroll did not solve the issue either.
So, my question is: How can I create a scrollable v-list
when the list has more items than can be displayed within the div?