vue2-mind-map
Version:
`vue2-mind-map` 是一个功能丰富的思维导图可视化组件。该组件提供了完整的思维导图展示和交互功能,支持多种数据格式输入、灵活的布局配置、丰富的样式定制和流畅的用户交互体验。目前基于 Vue 2 构建。
14 lines (13 loc) • 369 B
TypeScript
/**
* 生成uuid/guid
* @see https://stackoverflow.com/questions/105034/how-to-create-guid-uuid
* @returns {string} uuid 字符串
*/
declare function uuidv4(): string;
/**
* 生成随机字符串
* @param format 字符串格式(*为占位符)
* @returns
*/
declare function getRamdomStr(format?: string): string;
export { uuidv4, getRamdomStr, };