Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 2.61 KB

README.zh-CN.md

File metadata and controls

21 lines (16 loc) · 2.61 KB

树组件 困难 #Components

By 木荣 @murongg

接受挑战    English

在这个挑战中,你需要实现一个树组件,让我们开始吧。

<script setup lang="ts">
interface TreeData {
  key: string
  title: string
  children: TreeData[]
}
defineProps<{data: TreeData[]}>()
</script>

<template>
  <!-- do something.... -->
</template>

返回首页 分享你的解答 查看解答