I am looking to replace the default header 'number' with a custom HTML header while using vuetify for displaying a data table.
My current setup looks like this:
headers: [
{text: 'number', value: 'number'},
{text: 'car', value: 'car'},
{text: 'Total ', value: 'total'},
{text: 'Actions', value: 'actions'}
],
I believe I need to manipulate the template and slot, but I am completely lost.