vue-virtual-scroll-list icon indicating copy to clipboard operation
vue-virtual-scroll-list copied to clipboard

Question: Nested elements

Open arkhamvm opened this issue 4 years ago • 0 comments

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>

arkhamvm avatar Jun 18 '21 11:06 arkhamvm