Vue 内联样式的数据绑定
之前学的是数据绑定 class,现在可以将数据绑定到 style 中。
<div id="app">
<div v-bind:style="{ color: activeColor, fontSize: fontSize + ‘px‘ }">内联样式绑定</div>
</div>
<script>
new Vue({
el: ‘#app‘,
data: {
activeColor: ‘green‘,
fontSize: 30
}
})
</script>
原文地址:https://www.cnblogs.com/F4NNIU/p/9327731.html
时间: 2024-11-08 19:33:58