23 lines
463 B
Vue
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> |