UNPKG

bpmn-process-designer

Version:

A process designer base on Vue 2.x and ElementUI

11 lines (8 loc) 363 B
import BpmnRenderer from "bpmn-js/lib/draw/BpmnRenderer"; export default function CustomRenderer(config, eventBus, styles, pathMap, canvas, textRenderer) { BpmnRenderer.call(this, config, eventBus, styles, pathMap, canvas, textRenderer, 2000); this.handlers["label"] = function() { return null; }; } CustomRenderer.prototype = BpmnRenderer.prototype;