See LearningDtxGridVueController and its related Views for learning DtxGridVue
<div id="app">
<div class="container">
<dtx-grid-vue v-bind:settings="settings"></dtx-grid-vue>
</div>
</div>
<script>
new Vue({
el: '#app',
data: {
// New!
settings: {
cultrue: dtxGridVueCulture,
url: '/LearningDtxGridVue/GetData',
columns: [
{ fieldName: 'firstName', title: 'First Name', },
{ fieldName: 'lastName', title: 'Last Name', },
{ fieldName: 'age', title: 'Age', },
{ fieldName: 'salary', title: 'Salary', },
],
}
},
})
</script>
You can see all of samples and features in Learn_0100 to Learn_1700 actiions and views!