0👍
✅
You could Change the option field names as follows :
<b-form-select
v-model="selectedLocation"
:options="locations"
id="location_name"
size="sm"
value-field="location_name"
text-field="location_name"
>
...
selectedLocation
should be defined in data as follows :
data() {
return {
locations: [],
selectedLocation:null
. ..
Source:stackexchange.com