我正在使用Vuetify,在表格上方有一些内容。表格应该有fixed-header
,但这需要height
属性。100%
的高度不起作用,我无法使用100vh
,因为我在上方有一些内容。
生殖环节
<template>
<v-app>
<v-main>
<v-alert type="info" title="some other content goes here" />
<v-table :fixed-header="true" height="100%"> <!-- height=100% doesn't work -->
<thead>
<tr>
<th>Header</th>
</tr>
</thead>
<tbody>
<tr v-for="i in 100">
<td>x</td>
</tr>
</tbody>
</v-table>
</v-main>
</v-app>
</template>
你有什么想法如何设置一个固定的割台与正确的高度?
1条答案
按热度按时间svujldwt1#
您可以使用带有一点flex的
100vh
。