new Vue({
el: '#app',
template: `
<div id="app">
<ejs-grid :dataSource="data" :allowPaging='true'>
<e-columns>
<e-column field='OrderID' headerText='Order ID' textAlign='Right' width=90></e-column>
<e-column field='CustomerID' headerText='Customer ID' width=120></e-column>
<e-column field='Freight' headerText='Freight' textAlign='Right' width=90></e-column>
<e-column field='ShipCity' :visible=false headerText='Ship City' width=120></e-column>
</e-columns>
</ejs-grid>
</ejs-grid>
</div>
`, |