标签:返回值 weight app ext ret 必须 属性 cti html
计算属性 计算属性必须是有一个返回值的哦
在html写被计算的值
在computed中去直接调用哈
<view>
<text>{{jisuweight}}</text>
</view>
data() {
return {
weight:1110,
}
},
computed:{
jisuweight(){
return this.weight>1000 ? (this.weight/1000)+"kg" : this.weight;
}
},
标签:返回值 weight app ext ret 必须 属性 cti html
原文地址:https://www.cnblogs.com/IwishIcould/p/12184430.html