[Vuejs]-Vue.js throws multiple warnings: Invalid prop: type check failed for prop "items". Expected Array, got String with value ""

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.

Leave a comment