Files
WebETA/src/components/ui/States.vue
2023-11-25 19:52:45 -06:00

63 lines
1.6 KiB
Vue

<script setup>
import { ref } from 'vue';
import VueMultiselect from 'vue-multiselect'
import { searchstates } from '../../services/public';
const options = ref([]);
const isLoading = ref(false);
// defineProps(['selectedState', 'multiple']);
defineProps({
selectedState: {
type: Array
},
multiple: {
type: Boolean,
default: false
}
});
defineEmits(['update:selectedState', 'clear-option'])
const searchState = async(query) => {
isLoading.value = true;
const resp = await searchstates(query);
options.value = resp;
isLoading.value = false;
}
</script>
<template>
<VueMultiselect
:value="selectedState"
@input="$event => $emit('update:selectedState', $event.target.value)"
id="states"
:options="options"
:multiple="multiple"
:searchable="true"
:loading="isLoading"
:close-on-select="true"
@search-change="searchState"
@remove="$emit('clear-option')"
placeholder="Busca por estado"
label="state_name"
track-by="state_name"
selectLabel="Presione para seleccionar"
selectedLabel="Selecionado"
deselectLabel="Presione para remover selecion"
>
<template #noResult>
Oops! No se encontro coincidencias.
</template>
<template #noOptions>
Escriba para obtener lista.
</template>
</VueMultiselect>
</template>
<style src="vue-multiselect/dist/vue-multiselect.css"></style>
<style scoped>
</style>