flow-topology-vue3
Version:
flow-topology-vue3是一个用于创建流拓扑图的Vue 3组件库。它提供了一组可重用的组件和实用程序,以帮助您构建交互式的、具有视觉吸引力的流程图、流程图或表示数据流的任何其他类型的图
17 lines (16 loc) • 704 B
TypeScript
import { Plugin } from 'vue';
import { default as TemplateWrapper } from './components/TemplateWrapper/index.vue';
import { default as Topology } from './components/Topology/index.vue';
import { default as AnchorWrapper } from './components/AnchorWrapper/index.vue';
import { NodeVO as Ftv3NodeVO, LineVO as Ftv3LineVO, BranchVO as Ftv3BranchVO } from './types.d';
declare const plugin: Plugin;
declare const FlowTopologyVue3Resolver: () => {
type: string;
resolve: (name: string) => {
name: string;
from: string;
};
};
export { TemplateWrapper, Topology, AnchorWrapper, FlowTopologyVue3Resolver };
export type { Ftv3NodeVO, Ftv3LineVO, Ftv3BranchVO };
export default plugin;