first commit

This commit is contained in:
2025-05-23 15:36:39 +07:00
commit 692ffdf2f1
129 changed files with 12232 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
<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>