Files
2025-04-24 07:31:36 +07:00

33 lines
814 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>