16 lines
218 B
JavaScript
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"
|
|
}
|
|
}
|
|
}
|
|
});
|