24 lines
424 B
Vue
24 lines
424 B
Vue
<template>
|
|
<SelectElement
|
|
name="role"
|
|
:search="true"
|
|
:native="false"
|
|
input-type="search"
|
|
autocomplete="off"
|
|
label="Hak Akses"
|
|
:items="[
|
|
{
|
|
value: 0,
|
|
label: 'Administrator',
|
|
},
|
|
{
|
|
value: '1',
|
|
label: 'Manager',
|
|
},
|
|
{
|
|
value: '2',
|
|
label: 'Staff',
|
|
},
|
|
]"
|
|
/>
|
|
</template> |