17 lines
338 B
Vue
17 lines
338 B
Vue
<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>
|