[Vuejs]-How to load data into a select input using vue js?

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
   . ..

Leave a comment