# Select
# Options
The options
in the select box are fetched via the /options
-call.
# Filters
Filters can be applied via the filters
-prop.
# Example
<template>
<Select url="/customers" :filters="filters" />
</template>
<script>
import { Select } from '@jdi/vue-backoffice-library'
export default {
components: {
Select
},
computed: {
filters() {
return [
// Filter structure
]
}
}
}
</script>