我正在尝试在Vue js中的JSON元素上添加样式:
<div v-for="(item, index) in json._items" class="help-inner-callout" v-html="item.text" style="top:item.top; left: item.left;"></div>
在我的try循环中,元素v-html="item.text"
用文本填充,但未应用样式。任何人都可以看看,我刚刚开始学习Vue js。
答案 0 :(得分:2)
您需要绑定(v-bind:style
或:style
),因为您使用了item
:style="{top:item.top, left: item.left}"