[Vuejs]-Laravel, Vue refresh order after axios

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;

Leave a comment