<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div id='div'>
<div :style="{fontSize:ground+'px',backgroundColor:color }">
{{one}}
</div>
<div :style="first()">
{{one}}
</div>
</div>
</body>
</html>
<script src="vue.js"></script>
<script>
const div =new Vue({
el:'#div',
data:{
one:'hello,vue',
ground:100,
color:'pink'
},
methods:{
first:function(){
return{fontSize:this.ground+'px',backgroundColor:this.color }
}
}
})
</script>