0👍
✅
Vuetify 3 API is not guaranteed to always work the same as the older Vuetify 2 API. You need to consult the documentation to verify the props you’re using still exist, or figure out what they’ve been changed to.
value
prop is nowmodel-value
opacity
is no longer a prop but is a SASS variable$overlay-opacity
absolute
prop only accepts a booleantrue
orfalse
Your <v-overlay>
should then look something like this:
<v-overlay :absolute="true" :model-value="overlay">
The opacity can be changed by following these instructions for overriding component specific SASS variables, and having a settings.scss
file with the following:
@use 'vuetify/settings' with (
$overlay-opacity: 0.88
);
Source:stackexchange.com