UNPKG

vue3-tree-vue

Version:

A Simple vue3 project for rendering items in a tree.

8 lines (7 loc) 249 B
import { Plugin } from 'vue'; import Tree from "./tree-component.vue"; declare type InstallableComponent = typeof Tree & { install: Exclude<Plugin['install'], undefined>; }; declare const _default: InstallableComponent; export default _default;