vue-virtual-scroll-list
vue-virtual-scroll-list copied to clipboard
Question: Nested elements
Hi. Is it possible to use this package for nested elements?
Component's template is something like this comment-item.vue:
<template>
<div>
<!-- some text -->
<comment-item v-for="child in children" :key="child.id" :data="child">
</div>
</template>
And page template:
<template>
<comment-item v-for="comment in rootComments" :key="comment.id" :data="comment">
</template>