var app = new Vue({
el:"#app",
data:{
price:100
},
computed:{
newPrice:function(){
return '¥' + price +"元"
}
}
})
<h1>Computed Option 计算选项</h1>
<hr>
<div id="app">
{{newPrice}}
</div>