I have the data array as:
data() {
return {
columns: [
{
label: 'Action Description',
field: 'actionDescription',
tdClass: 'text-center',
thClass: 'text-center',
sortable: false,
},
{
label: 'Group Description',
field: 'groupDescription',
tdClass: 'text-center',
thClass: 'text-center',
sortable: false,
}
],
},
}
So I want to display only one column called "Description" and display the concat result of actionDescription
and groupDescription
.
How can I achieve that?