first commit
This commit is contained in:
26
components/Form/Lib/Contact.vue
Normal file
26
components/Form/Lib/Contact.vue
Normal 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>
|
||||
Reference in New Issue
Block a user