模型基础信息
This commit is contained in:
24
src/components/XnWorkflow/chart/nodes/cStartEvent.vue
Normal file
24
src/components/XnWorkflow/chart/nodes/cStartEvent.vue
Normal file
@@ -0,0 +1,24 @@
|
||||
<template>
|
||||
<div class="node-wrap"></div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
props: {
|
||||
modelValue: { type: Object, default: () => {} }
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
childNode: {}
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
modelValue() {
|
||||
this.childNode = this.modelValue
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
this.childNode = this.modelValue
|
||||
}
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user