UNIVPLMDataIntegration/Web/src/views/system/formDes/index.vue
zuohuaijun 5074b67f65 😎初始化
2024-06-15 13:02:35 +08:00

22 lines
403 B
Vue

<template>
<div class="sys-formDes-container">
<v-form-designer class="form-designer" ref="vFormDesignRef"></v-form-designer>
</div>
</template>
<script lang="ts" setup name="sysFormDes">
import { ref } from 'vue';
const vFormDesignRef = ref(null);
</script>
<style lang="scss" scoped>
body {
margin: 0; // 去除页面垂直滚动条
}
.form-designer {
overflow: unset !important;
}
</style>