初始化
This commit is contained in:
20
src/components/custom/business-form-section.vue
Normal file
20
src/components/custom/business-form-section.vue
Normal file
@@ -0,0 +1,20 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user