In Vuetify, when I use the data-table component, by default I get a bunch of information displayed through the props, I succeeded to get rid of them (such as the previous and next icons), howver I can not get rid of the text below the 2 rows displayed here:
(I mean that 1-2 of 2 text)
Here is the code (Codepen live demo):
<div id="app">
<v-app id="inspire">
<v-data-table
:headers="headers"
:items="desserts"
v-model="selected"
item-key="name"
select-all
class="elevation-1"
rows-per-page-items=2
prev-icon=false
next-icon=false
>
<template slot="headerCell" slot-scope="props">
<v-tooltip bottom>
<span slot="activator">
{{ props.header.text }}
</span>
<span>
{{ props.header.text }}
</span>
</v-tooltip>
</template>
<template slot="items" slot-scope="props">
<td>
<v-checkbox
v-model="props.selected"
primary
hide-details
></v-checkbox>
</td>
<td>{{ props.item.name }}</td>
<td class="text-xs-right">{{ props.item.calories }}</td>
<td class="text-xs-right">{{ props.item.fat }}</td>
<td class="text-xs-right">{{ props.item.carbs }}</td>
</template>
</v-data-table>
</v-app>
</div>