<div id="app">
<div @click="handleDivClick" :style="[styleObj, {fontSize: '30px'}]">
hello world
</div>
</div>
var app = new Vue({
el: "#app",
data: {
styleObj: {
color: "#000"
}
},
methods: {
handleDivClick: function () {
this.styleObj.color = this.styleObj.color === "#000" ? "red" : "#000";
}
}
});
This Pen doesn't use any external CSS resources.