dflow-designer 0.0.3 → 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -40,7 +40,7 @@ import "dflow-designer/dist/designer.style.css"; // 引入样式
40
40
 
41
41
  ```
42
42
  <template>
43
- <FlowDesign ref="process" :data="processData" />
43
+ <FlowDesign ref="process" :data="processData" :is-view="true"/>
44
44
  </template>
45
45
  <script lang="ts" setup>
46
46
  const processData = ref({
@@ -53,6 +53,7 @@ const processData = ref({
53
53
  },
54
54
  },
55
55
  });
56
+ is-view 表示是否是只读展示模式
56
57
  </script>
57
58
  ```
58
59