I integrated Jquery Datatables with VueJS Here is my Code
I want to attach a method of my Vue compoenent to the
button
My Button
row.push('<button @click="vm.buttonPressed()">My Button</button>'); //Add a method when button is pressed
Have you ever tried building your table using Vue v-for
directive for rendering the rows and then just invoking DataTable
method on the resulting table?
That would be:
$('#example').DataTable();
Take a look at this modified version I made from yours:
https://codepen.io/feload/pen/PJKoJP?editors=1010
Good luck!