根据VueJS
文档:<div v-bind:style="{ color: activeColor, fontSize: fontSize + 'px' }"></div>
我尝试了几种模式:
<div v-bind:style="{ background-image: url(item.img), }"></div>
<div v-bind:style="{ 'background-image': url('item.img'), }"></div>
<div v-bind:style='{ backgroundImage: "url(item.img)", }'></div>
但是结果对于HTML style
属性无效。
有什么想法吗
5条答案
按热度按时间hc8w905p1#
在尝试了其他模式之后,这是一个有效的模式:
<div v-bind:style='{ backgroundImage: "url(" + item.img + ")", }'></div>
结果:
<div style='{ background-image: url("/img/path/img.jpg"), }'></div>
apeeds0o2#
基于@T.Abdullaev的回答,这个带有额外双引号的回答对我有用。
xjreopfe3#
这样做。它也适用于模板。
4xy9mtcn4#
对我来说,这似乎工作得很好:
由于我所有的图片都在assets文件夹中,因此可以使用上述模式访问这些图片。
eiee3dmh5#
使用computed属性工作得很好,而且更简洁: