vue2-mind-map
Version:
`vue2-mind-map` 是一个功能丰富的思维导图可视化组件。该组件提供了完整的思维导图展示和交互功能,支持多种数据格式输入、灵活的布局配置、丰富的样式定制和流畅的用户交互体验。目前基于 Vue 2 构建。
8 lines (7 loc) • 341 B
TypeScript
import type { IFontStyle, IColorStyle, IBorderStyle, IBackgroundStyle } from "../entities/Styles";
export interface IStyleable {
applyFont(fontStyle: IFontStyle): void;
applyColor(colorStyle: IColorStyle): void;
applyBorder(borderStyle: IBorderStyle): void;
applyBackground(backgroundStyle: IBackgroundStyle): void;
}