computed 的作用主要是对原数据进行改造输出
比如:拼接字符串 ¥100元
data:{
price:100,
news:newList
},
computed:{
newPrice:function(){
return this.price="¥"+this.price+“元”
}
}
比如对数组进行反转 reverse
computed:{
reverseNew:function(){
return this.news.reverse()
}
}
注意在 v-for时 item in reverseNew
原文:https://www.cnblogs.com/laohange/p/12827567.html