there is a v-data-table with server side pagination, where I used a formatter for a specific column as described to this topic.
the need is to replace it with HTML and not plain text. For example my function is like :
formatCurrency (value) {
return '<strong>' + value + '</strong>';
//'<v-icon dark small>tick-outline</v-icon>' + value;
},
when I using this getting the pure HTML.... as :