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

16 lines
218 B
JavaScript

var app = new Vue({
el: '#app',
data: {
color: "gray",
width: 100
},
computed:{
myStyle(){
return {
backgroundColor: this.color,
width: this.width + "px"
}
}
}
});