<b-form-select
v-model="form.depart"
:options="department"
class="depart"
required
></b-form-select>
My coming array of object is:
[
{ id: 1, department_name: 'CSE', department_email: '[email protected]'},
{ id: 2, department_name: 'EEE', department_email: '[email protected]'},
]
This data is not loading in the Select Option. I want just department_name in the select option. Given NULL.