【发布时间】:2020-03-11 03:27:52
【问题描述】:
Vuetify v-data-table 不会增加字体大小。
我如何修改表格的内容,以便能够增加文本的字体大小,因为它太小且难以阅读。
<v-data-table
:headers="headers"
:items="allCareers"
:search="search"
sort-by="calories"
class="elevation-1 display-2 white--green"
>
<template v-slot:item.action="{ item }">
<v-icon small class="mr-2" @click="editArticle(item.ARTICLE_NUM)">edit</v-icon>
<v-icon small @click="deleteSingleArticle(item.ARTICLE_NUM)">delete</v-icon>
</template>
</v-data-table>
风格
<style scoped>
table.v-table thead tr th {
font-size: 24px;
}
table.v-table tbody tr td {
font-size: 24px;
}
</style>
【问题讨论】:
标签: vue.js vuejs2 vuetify.js