vue 绑定style
时间: 2023-09-15 08:16:33 浏览: 82
vue动态绑定 style 的丰富案例
在Vue中,可以通过v-bind:style指令来绑定样式。有几种不同的方式可以实现这个绑定。
首先,可以直接绑定到一个样式对象,使模板更清晰。例如:
<div id='app'>
<div v-bind:style="styleObject">Hello Vue!</div>
</div>
var vm = new Vue({
el: '#app',
data: {
styleObject: {
color: 'green',
fontSize: '30px'
}
}
})
其次,可以在v-bind:style中直接设置样式,使用内联样式。例如:
<div id='app'>
<div v-bind:style="{ color: activeColor, fontSize: fontSize + 'px' }">Hello Vue!</div>
</div>
var vm = new Vue({
el: '#app',
data: {
activeColor: 'green',
fontSize: 30
}
})
此外,还可以通过数组将多个样式对象应用到一个元素上。例如:
<div id='app'>
<div v-bind:style="[styleObject1, styleObject2]">Hello Vue!</div>
</div>
var vm = new Vue({
el: '#app',
data: {
styleObject1: {
color: 'green',
fontSize: '30px'
},
styleObject2: {
'font-weight': '20'
}
}
}) <span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* *3* [Vue —— 样式绑定](https://blog.csdn.net/qq_45902692/article/details/123596676)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 100%"]
[ .reference_list ]
阅读全文