vuejs-challenges icon indicating copy to clipboard operation
vuejs-challenges copied to clipboard

208 - 树组件 递归组件

Open Tofu-Xx opened this issue 5 months ago • 0 comments

<template>
  <!-- do something.... -->
  <ul v-for="{ key, children } of data" :key>
    <li>{{ key }}</li>
    <TreeComponent v-if="children" :data="children"></TreeComponent>
  </ul>
</template>

image

Tofu-Xx avatar Sep 15 '24 19:09 Tofu-Xx