UNPKG

vue2-mind-map

Version:

`vue2-mind-map` 是一个功能丰富的思维导图可视化组件。该组件提供了完整的思维导图展示和交互功能,支持多种数据格式输入、灵活的布局配置、丰富的样式定制和流畅的用户交互体验。目前基于 Vue 2 构建。

9 lines (8 loc) 405 B
import type { IListenable } from "./IListenable"; import type { ITransformSettable } from "./ITransformSettable"; import type { IResizable } from "./IResizable"; import type { IMeasurable } from "./IMeasurable"; import type { IStyleable } from "./IStyleable"; export interface IDomWrapable extends IListenable, ITransformSettable, IResizable, IMeasurable, IStyleable { htmlEle: HTMLElement; }