UNPKG

organization-chart-vue3

Version:

A lightweight, interactive organization chart component for Vue 3 with collapsible nodes, TypeScript types, custom slots, and selection events

6 lines (5 loc) 367 B
import type { DefineComponent } from "vue"; import type { OrganizationChartProps } from "./types"; declare const OrganizationChart: DefineComponent<OrganizationChartProps>; export type { OrganizationChartMember, OrganizationChartNode, OrganizationChartProps, OrganizationChartSelectPayload, OrganizationChartSlots, } from "./types"; export default OrganizationChart;