I have a bootstrap-vue table, which is bound to a computed property that fetches some data from my vuex store.
Each row has a show_details button, which opens a second row as per this link: https://bootstrap-vue.js.org/docs/components/table/#row-details-support
However when the data changes in my vuex store, the table re-renders and looses its state (all of the opened 'show_details' rows go back to closed).
Is there any way to update the table data in the store and the table, without loosing the table's current state?