<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style type="text/css">
.aaa{
color: red;
}
.bbb{
color: blue;
}
.ccc{
font-size: 30px;
}
</style>
</head>
<body>
<div id="d1">
<p :class="lx">哈哈哈哈哈</p>
<p :class="{aaa : flag, bbb : !flag}">呵呵呵呵呵</p>
<p :class="['aaa','ccc']">呵呵呵呵呵</p>
<button @click="bs1()">变身1</button>
<button @click="bs2()">变身2</button>
</div>
<script type="application/javascript" src="../js/vue.js"></script>
<script type="application/javascript">
var vm = new Vue({
el : "#d1",
data : {
lx : "aaa",
flag : true
},
methods : {
bs1(){
this.lx = "bbb";
},
bs2(){
this.flag = !this.flag;
}
}
});
</script>
</body>
</html>