fix: correct global scroll strategy to prevent menu fixation (#6577)

Co-authored-by: Jerome <jerome.roth@imt-atlantique.net>
Co-authored-by: Hayden <64056131+hay-kot@users.noreply.github.com>
This commit is contained in:
Jérôme
2026-01-30 03:27:45 +01:00
committed by GitHub
parent a33d8204df
commit 78fbbf0264

View File

@@ -389,6 +389,23 @@ export default defineNuxtConfig({
locale: "en-US",
fallback: "en-US",
},
defaults: {
VOverlay: {
scrollStrategy: "close",
},
VMenu: {
scrollStrategy: "close",
},
VAutocomplete: {
scrollStrategy: "close",
},
VCombobox: {
scrollStrategy: "close",
},
VSelect: {
scrollStrategy: "close",
},
},
},
},
});