2018-04-13 14:54:53 +00:00
|
|
|
var app = new Vue({
|
|
|
|
el: '#app',
|
|
|
|
data: {
|
2018-04-13 19:10:41 +00:00
|
|
|
color: "gray",
|
|
|
|
width: 100
|
2018-04-13 14:56:49 +00:00
|
|
|
},
|
2018-04-13 18:57:51 +00:00
|
|
|
computed:{
|
2018-04-13 19:10:41 +00:00
|
|
|
myStyle(){
|
2018-04-13 18:57:51 +00:00
|
|
|
return {
|
2018-04-13 19:10:41 +00:00
|
|
|
backgroundColor: this.color,
|
|
|
|
width: this.width + "px"
|
2018-04-13 18:57:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-04-13 18:55:09 +00:00
|
|
|
});
|