mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-11-09 13:53:38 +08:00
18 lines
523 B
TypeScript
18 lines
523 B
TypeScript
import control from "./src/Control.vue";
|
||
import nodePanel from "./src/NodePanel.vue";
|
||
import dataDialog from "./src/DataDialog.vue";
|
||
import { withInstall } from "@pureadmin/utils";
|
||
|
||
/** LogicFlow流程图-控制面板 */
|
||
const Control = withInstall(control);
|
||
|
||
/** LogicFlow流程图-拖拽面板 */
|
||
const NodePanel = withInstall(nodePanel);
|
||
|
||
/** LogicFlow流程图-查看数据 */
|
||
const DataDialog = withInstall(dataDialog);
|
||
|
||
export { Control, NodePanel, DataDialog };
|
||
|
||
// LogicFlow流程图文档:http://logic-flow.org/
|