1👍
✅
You need to remove the overflow-hidden
class from the v-card
that wraps the v-app-bar
and v-sheet
. (You might just remove the v-card
altogether)
I would guess the vuetify docs have this so the examples work on their own site.
0👍
This is happening for two reasons-
- Outer Scrollbar comes from html.
- bcz your contents like- v-sheet, v-container exceed your screen height
- Inner Scrollbar is for v-sheet
- bcz v-sheet’s max-height is 600px & It’s content container’s height is 1000px which overflows v-sheet’s height.
There is no fixed height of v-card, it’s flexible to it’s content. So,
don’t add overflow-hidden class to it. You should hidden in any of
html
orv-sheet
Source:stackexchange.com