Files
admin-sjzx/src/views/pqs/supervise/workflows/index.vue

17 lines
338 B
Vue
Raw Normal View History

2024-04-08 11:24:45 +08:00
<template>
<div class="default-main" :style="layout">123</div>
</template>
<script setup lang="ts">
import { onMounted, reactive, ref, provide } from 'vue'
import { mainHeight } from '@/utils/layout'
defineOptions({
name: 'Workflow/Designer/tools'
})
const layout = mainHeight(20)
</script>
<style lang="scss" scoped></style>