I am using v-navigation-drawer
in my Vue 3 app with Vuetify 3:
<template>
<v-navigation-drawer app :image="backgroundImage">
...
</v-navigation-drawer>
</template>
<script>
import backgroundImage from ' @/assets/backgroundImage.jpg'
export default {
name: 'MyDrawer',
setup() {
return { backgroundImage }
},
}
</script>
I would like to add a gradient to this image, similar to
<v-img
src="backgroundImage"
gradient="to top right, rgba(100,115,201,.33), rgba(25,32,72,.7)"
></v-img>
How could I accomplish this?