I have an object in Vue that contains a string key for each user and a list (of courses) as the values that I would like to use to populate a b-table.
I'm wondering if there is a way to do this so that the items in the table are reactive, ie the table updates as the data in the userCourses variable updates. A simplified version of the code is shown below:
<div v-for="user in users" v-bind:key="user">
<b-table :items="userCourses[user]" :fields="courseFields"></b-table>
</div>
userCourses: {
'userOne': [...],
'userTwo': [...]
}