[Solved] Kendo UI Grid Data variable Vue.js

Yes, instead of using a data-source-ref, you can bind to a data-source property. This can be an instance of an kendo DataSource or a simple array. For example, here’s the default demo, changed to bind to an array of objects. var products = [{ “ProductID”: 1, “ProductName”: “Chai”, “UnitPrice”: 18, “UnitsInStock”: 39, “Discontinued”: false }, … Read more