0👍
This is due to array change detection caveats
So in you success call back of the axios request do it like this:
self.$set(self.selected, orderProductId, statusId);
Instead of
self.selected[orderProductId] = statusId;
Source:stackexchange.com