Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

208 - Tree Component #2800

Open
kai-phan opened this issue Sep 14, 2024 · 0 comments
Open

208 - Tree Component #2800

kai-phan opened this issue Sep 14, 2024 · 0 comments

Comments

@kai-phan
Copy link

kai-phan commented Sep 14, 2024

<script setup lang="ts">
import { h } from 'vue';
interface TreeData {
  key: string
  title: string
  children: TreeData[]
}
defineProps<{data: TreeData[]}>();

const Tree = (props, { slots }) => {
  const { data } = props;

  if(!data) return slots.default();

  return h('ul', data.map((el, i) => {
    return h('li', null, [el.children ? el.title: undefined, h(Tree, { data: el.children }, () => el.title )])
  }))

}
</script>

<template>
  <!-- do something.... -->
  <Tree :data="data"/>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant