10 lines
202 B
Vue
10 lines
202 B
Vue
<template>
|
|
<SelectField v-bind="$attrs" :searchable="true" />
|
|
</template>
|
|
|
|
<script setup>
|
|
import SelectField from '@/components/form/SelectField.vue'
|
|
|
|
defineOptions({ inheritAttrs: false })
|
|
</script>
|