UNPKG

vue3-treeview

Version:

A simple vue js 3 treeview component

9 lines (8 loc) 176 B
import { INodeState } from './INodeState'; export interface INode { id?: string; parent?: string; text?: string; children?: string[]; state?: INodeState; }