Files
cobaKeuangan/components/Form/Lib/Contact.vue
2025-05-23 15:36:39 +07:00

26 lines
706 B
Vue

<script setup>
</script>
<template>
<ListElement name="contact" :rules="['min:1']" :min="1" :max="1" :initial="1">
<template #default="{ index }">
<ObjectElement :name="index">
<GroupElement name="container2">
<GroupElement name="column1" :columns="{
container: 6,
}">
<FormLibRelationship />
</GroupElement>
<GroupElement name="column_2" :columns="{
container: 6,
}">
<FormLibHumanName />
</GroupElement>
</GroupElement>
<FormLibTelecom />
<FormLibAddress />
<FormLibGender />
</ObjectElement>
</template>
</ListElement>
</template>