gpt4 book ai didi

css - Vuetify 日历高度问题

转载 作者:行者123 更新时间:2023-12-04 07:30:15 26 4
gpt4 key购买 nike

我试图防止在使用 Vuetify 的工作表和日历时出现两个滚动条。
enter image description here
这是我的代码:

<template>
<v-app>
<v-main>
<v-container fluid class="fill-height">
<v-row justify="center" class="fill-height">
<v-col cols="12" class="fill-height">
<v-sheet class="fill-height">
<v-calendar type="week" />
</v-sheet>
</v-col>
</v-row>
</v-container>
</v-main>
</v-app>
</template>

最佳答案

只需覆盖 Vuetify 日历组件的 CSS 即可删除多余的滚动条:

.v-calendar-daily__scroll-area {
overflow-y: hidden !important;
}
同时删除 class="fill-height"来自 v-sheet ,它使日历有点重叠。我不知道你为什么添加它。
在这里查看:
https://codepen.io/nmdatit/pen/OJpdwox
enter image description here

关于css - Vuetify 日历高度问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67976718/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com