Vue中的样式元素

时间:2018-12-27 05:15:09

标签: javascript vue.js

我正在尝试在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。

1 个答案:

答案 0 :(得分:2)

您需要绑定(v-bind:style:style),因为您使用了item

:style="{top:item.top, left: item.left}"