vue:从数组获取颜色动态改变循环div颜色样式
绑定:style<div id="app"><div v-for="item in items"><span:style="{'color':item.color}">item.name</span></div></div><script>var vue = n...
·
绑定:style
<div id="app">
<div v-for="item in items">
<span :style="{'color':item.color}">item.name</span>
</div>
</div>
<script>
var vue = new Vue({
el:'app',
data:{
items[
{‘color’:'red','name':'红色'},
{‘color’:'blue','name':'蓝色'}
]
}
});
</script>
转载至https://blog.csdn.net/jianeng_Love_IT/article/details/83514714
如果对你有帮助点个赞哟(^U^)
更多推荐
已为社区贡献6条内容
所有评论(0)