溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

vue2.0 computed 計算list循環(huán)后累加值的實例

發(fā)布時間:2020-08-28 09:30:28 來源:腳本之家 閱讀:318 作者:huang100qi 欄目:web開發(fā)

實例如下所示:

<template>
 <div class="hello">
  <h2>{{ msg }}</h2>
  <h3>Foo</h3>
  <div v-for ="(item, index) in list">
  <!--<p>{{item }}</p>-->
  <h2 v-show="false">{{a[index] = item.bb}}</h2>
   <!-- <h2>index:{{index}}</h2>-->
  </div>
  <h3>a:{{a}}</h3>
  <h3>{{cc}}</h3>
  <!--<button v-on:click="cc">點擊</button>-->
 </div>
</template>
<script>
export default {
 name: 'foo',
 data () {
  return {
   msg: '這兒是Foo',
   list:[{
     insertId: 'asfasf252',
     bb:29
   },{
    insertId: '2652',
     bb:20
   },{
    insertId: '996',
     bb:18
   }],
   a:[]
  }
 },
 computed:{
   cc: function(){
     var sum = 0;
     for(var i= 0 ;i< this.a.length; i++) {
        sum += parseInt(this.a[i]);
     }
     return sum;
   }
 }
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
h2, h3 {
 font-weight: normal;
}
ul {
 list-style-type: none;
 padding: 0;
}
li {
 display: inline-block;
 margin: 0 10px;
}
a {
 color: #42b983;
}
</style>

以上這篇vue2.0 computed 計算list循環(huán)后累加值的實例就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持億速云。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI