Line data Source code
1 1 : <template lang="pug"> 2 13 : BaseAnimationGroup.d-flex.flex-column.h-100(anim='height') 3 13 : .py-1.max-h-50(:key='stateKey' v-if='state') 4 13 : StateEdit.h-100 5 13 : .py-1.max-h-50(:key='propertyKey' v-if='!transition && !relation && property') 6 : PropertyEdit.h-100(:title='property.tagName') 7 : template(v-if='!transition && relation') 8 : .py-1.max-h-50(:key='propertyKey' v-if='relation.tagName === "direct"') 9 : RelationEdit.h-100(title='Direct') 10 : .py-1.max-h-50(:key='propertyKey' v-else-if='relation.tagName === "relation"') 11 : RelationEdit.h-100 12 : .py-1.max-h-50(:key='propertyKey' v-else-if='relation.tagName === "transform"') 13 : TransformEdit.h-100 14 : .py-1.max-h-50(key='transition' v-if='transition') 15 : TransitionEdit.h-100 16 : </template> 17 : <script src='./SSVGPropEdit.vue.js' />