Vuetify documentation suggests to pass an object
array for headers that has a text
attribute like so:
[{
text: string;
value: string;
align: 'left' | 'center' | 'right';
sortable: boolean;
class: string[] | string;
width: string;
}]
But if you pass:
[{
text: string = "<div>Foo</div><div>Bar</div>;
value: string;
align: 'left' | 'center' | 'right';
sortable: boolean;
class: string[] | string;
width: string;
}]
It won't render the HTML (it'll escape the text).
So, how do I render HTML?