Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
evanyangg committed Dec 2, 2019
1 parent c5a6930 commit 41f5bd3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Changelog
## 0.1.12

## 0.1.13
* `FEATURE`: 新增流程模板编辑(导入)功能
## 0.1.8
* `FIXED`: 光标移出编辑区域自动完成当前编辑转台
Expand Down
2 changes: 1 addition & 1 deletion examples/App.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div id="app">
<BpmnModeler v-model="modeler"></BpmnModeler>
<BpmnModeler v-model="modeler" :diagramXML="propXmlData"></BpmnModeler>
<!-- <BpmnViewer :xmlData="propXmlData" :taskData="propTaskList"></BpmnViewer> -->
</div>
</template>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-bpmn-modeler",
"version": "0.1.12",
"version": "0.1.13",
"private": false,
"main": "lib/vue-bpmn-modeler.umd.min.js",
"author": "evanyangg",
Expand Down
2 changes: 1 addition & 1 deletion packages/BpmnModeler/src/BpmnModeler.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export default {
camunda: camundaModdleDescriptor
}
});
this.openDiagram();
this.openDiagram(this.diagramXML);
// 自动保存当前模型设计
let _self = this;
let exportArtifacts = debounce(function() {
Expand Down

0 comments on commit 41f5bd3

Please sign in to comment.