20 lines
437 B
Vue
20 lines
437 B
Vue
<script setup>
|
|
const props = defineProps({
|
|
items:{
|
|
type:Array
|
|
}
|
|
})
|
|
</script>
|
|
<template>
|
|
<SelectElement
|
|
:items="props.items"
|
|
:search="true"
|
|
:native="false"
|
|
label="Permission Category"
|
|
input-type="search"
|
|
autocomplete="off"
|
|
:columns="{
|
|
container: 5,
|
|
}"
|
|
/>
|
|
</template> |