18 lines
290 B
Vue
18 lines
290 B
Vue
![]() |
<script setup lang="ts">
|
||
|
import WorkFlowIframe from '../modules/workflow-iframe.vue';
|
||
|
|
||
|
defineOptions({
|
||
|
name: 'WorkFlowEdit'
|
||
|
});
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div class="iframe"><WorkFlowIframe value="D7Rzd7Oe" /></div>
|
||
|
</template>
|
||
|
|
||
|
<style scoped>
|
||
|
.iframe {
|
||
|
padding: 0 !important;
|
||
|
}
|
||
|
</style>
|