VueJS
ドキュメントによると:私はいくつかのパターンを試してみたVueJS V-バインド:背景画像のスタイル:URL()
<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
属性では無効です。
アイデア?他のパターンを試した後、これは動作するものである