I want to display the values in the day object such as: Sunday, Monday, etc.
For now, here my code:
<div class="col-md-3 col-sm-6" v-for="item in result" v-bind:key="item.schedule_id">
{{ item.day }}
</div>
My result:
[ "Monday", "Wednesday" ]
