This commit is contained in:
2023-07-11 10:38:21 +03:00
commit 2ddefb9be3
25 changed files with 747 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<script setup lang="ts">
import { GenderEnum } from 'axp-ts'
import UiFieldSelect from './FieldSelect.vue'
const options: any[] = [
{
text: 'Мужской',
value: GenderEnum.man
},
{
text: 'Женский',
value: GenderEnum.woman
}
]
</script>
<template>
<ui-field-select :options="options" class="ui-field-select-gender" />
</template>