Files
cobaKeuangan/components/Form/Lib/Gender.vue
2025-05-23 15:36:39 +07:00

17 lines
295 B
Vue

<template>
<RadiogroupElement
name="gender"
view="tabs"
label="Jenis Kelamin"
:items="[
{
value: 'male',
label: 'Laki-Laki',
},
{
value: 'female',
label: 'female',
},
]"
/>
</template>