Vue.js学习系列(三十一)-- Vue.js样式绑定(二)

1.2 绑定多个属性

.active {

width: 100px;

height: 100px;

border: 1px solid red;

background: green

}

.content{

font-size: 14px;

color: red;

}

我是div

new Vue({

el:"#app",

data:{

classObj:{

active:true,

content:true

}

}

})

你可能感兴趣的:(Vue.js学习系列(三十一)-- Vue.js样式绑定(二))