learnin-some-vue/app.js
2018-04-13 15:04:26 -04:00

18 lines
263 B
JavaScript

var app = new Vue({
el: '#app',
data: {
attachRed: false,
attachGreen: false,
attachBlue: true,
color: "green"
},
computed:{
divClasses(){
return {
red: this.attachRed,
blue: !this.attachRed
}
}
}
});