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