learnin-some-vue/app.js
2018-04-13 14:57:51 -04:00

17 lines
243 B
JavaScript

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