8 lines
208 B
JavaScript
8 lines
208 B
JavaScript
|
|
import BpmnPropertiesPanel from "./PropertiesPanel.vue";
|
||
|
|
|
||
|
|
BpmnPropertiesPanel.install = function(Vue) {
|
||
|
|
Vue.component(BpmnPropertiesPanel.name, BpmnPropertiesPanel);
|
||
|
|
};
|
||
|
|
|
||
|
|
export default BpmnPropertiesPanel;
|