【发布时间】:2020-12-27 23:41:48
【问题描述】:
我想用我拥有的图片替换导航抽屉(./src/assets/image.jpg)
<v-navigation-drawer
mini-variant
dark
app
permanent
class="withBackground"
>
...
<style scoped>
.withBackground {
background: rgba(-1, 0, 0, 0);
background-image: // what here?;
}
</style>
我不知道要为background-image 设置什么。我应该通过import 加载图像并将其附加到data 字段然后将其放置在那里吗?
【问题讨论】:
标签: html vue.js vuetify.js