【发布时间】:2021-10-14 13:09:53
【问题描述】:
当我的屏幕尺寸发生变化时,我想更改图像 src。我正在使用 Nuxt。我目前有这个代码:
<div v-for="(item, index) in aside" :key="index"">
<img :src="item.svgIconDark.filename" />
</div>
这是从 StoryBlok API 调用我的图像。 StoryBlok 包含 2 条路径,我可以将它们用于图像。
在低于中等尺寸的屏幕上,我想显示item.svgIconDark.filename
在中+尺寸的屏幕上,我想显示item.svgIconLight.filename。
我也在使用 Tailwind CSS。非常感谢任何帮助。谢谢。
【问题讨论】:
标签: image vue.js background