I'm working on a Vuejs component and I currently have this code snippet:
<div class="col-sm-9">
<Select class="form-control" name="building" v-model="allBuild.id" @change="showBuilding($event)">
<option v-for="b in allBuilding" :key="b.id" :value="b.id">
{{ b.description }}
</option>
</Select>
</div>
Can anyone provide guidance on how to display the API records after a building has been selected?