0👍
Your template is missing the erase
function which means you have to define erase
as your components method, just like that:
methods: {
erase(h, row, index) {
return <delete id={row.data.category_id}></delete>;
}
}
- [Vuejs]-Using external callback function data inside vuejs component
- [Vuejs]-Dynamic Array in Data list not showing up
Source:stackexchange.com