4👍
✅
Instead of data use a computed property.
computed: {
orderIds: function () {
return Object.keys(this.order);
}
}
Source:stackexchange.com