Class与Style的绑定操作
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>class与style的绑定操作</title>
<style>
.aClass {
color: #ff42b6;
}
.bClass {
color: #ff941e;
}
</style>
</head>
<body>
<div id="demo">
<h1>class与style的绑定操作</h1>
<!--class可以绑定字符串、数组、对象-->
<p :class="a">class绑定字符串</p>
<p :class="{aClass:isA , bClass:isB}">class绑定对象</p>
<p :style="{color:activeColor , fontSize:fontSize + 'px'}">style的绑定操作</p>
<button @click="updateColor">点击更改颜色</button>
</div>
<script type="text/javascript" src="../js/vue.js"></script>
<script type="text/javascript">
new Vue({
el:'#demo',
data:{
a:'aClass',
isA:true,
isB:false,
activeColor:'#ff941e',
fontSize:'20'
},
methods: {
updateColor() {
this.a = 'bClass',
this.isA = false,
this.isB = true,
this.activeColor = '#ff42b6',
this.fontSize = '30'
}
}
})
</script>
</body>
</html>