I have a vuetify v-data-table widget that displays data. Currently the data shown uses too much space (rows have a lot of padding) so I use the dense prop. I add the property dense (like that, not dense='true') to the table opening tag but nothing happens. The display stays wide and the property is ignored.
Tried to remove all props except the items prop:
<v-data-table
dense
:items="results"
>
makes no difference. dense is ignored.
I currently have this:
` <v-flex xs12>
<v-data-table
dense
:headers="headers"
:items="results"
:disable-initial-sort="true"
:pagination.sync="pagination"
class="elevation-1 results-table"
@update:pagination="updatePagination($event)"
>`