17 lines
295 B
Vue
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> |