vue-materialize-datatable
vue-materialize-datatable copied to clipboard
Datatable Column Render function
How can i use the render function of datatables to render rows??
render(row,cell,index){ let data = ""; if (row.status == "active") { data = ''+row.status+''; } if(row.status == 'inactive'){ data = ''+row.status+''; }
return data;
}