Files
cn-rdms-web/src/components/custom/business-form-section.vue

21 lines
324 B
Vue
Raw Normal View History

2026-03-26 20:18:20 +08:00
<script setup lang="ts">
defineOptions({
name: 'BusinessFormSection'
});
interface Props {
title: string;
}
defineProps<Props>();
</script>
<template>
<section class="business-form-section">
<h4 class="business-form-section__title">{{ title }}</h4>
<slot />
</section>
</template>
<style scoped></style>