博文

目前显示的是标签为“n-bind:style”的博文

Vue-v-bind:style

v-bind:style < div id = "app" > < div style = " width:100px;height:50px;" v-bind:style = "{'backgroundColor':'blue'}" ></ div > < div style = " width:100px;height:50px;" v-bind:style = "{backgroundColor:'green'}" ></ div > < div style = " width:100px;height:50px;" v-bind:style = "{backgroundColor:color}" ></ div > color < input type = "text" v-model.lazy:value = "color" > < div v-bind:style = "style" > style </ div > < div v-bind:style = "style1" > style1 in computed </ div > </ div > < script > var vm = new Vue ({ el: "#app" , data: { color: "blue" , style: { backgroundColor: 'red' }} , computed: { style1 : function (){ return { backgroundColor: this . color }}} } ); < / script > ...