7👍
✅
The data-table expects the orders variable passed via :items="orders"
to be an array. You are defining it as a string here orders: ''
. You probably want to use orders: []
instead.
Source:stackexchange.com