Files
2025-07-21 10:14:27 +07:00

23 lines
463 B
Vue

<script setup>
const props = defineProps({
items:{
type:Array
},
label:{
string:String
}
})
</script>
<template>
<SelectElement
:items="props.items"
:search="true"
:native="false"
:label="props.label"
input-type="search"
autocomplete="off"
:columns="{
container: 5,
}"
/>
</template>