我在我的Vue 3应用程序中使用v-navigation-drawer
与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>
我想给这张图像添加一个渐变,类似于
<v-img
src="backgroundImage"
gradient="to top right, rgba(100,115,201,.33), rgba(25,32,72,.7)"
></v-img>
我该怎么做呢?
1条答案
按热度按时间ruarlubt1#