中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

Vue中怎么利用watch監聽數組

發布時間:2021-07-09 15:19:37 來源:億速云 閱讀:898 作者:Leah 欄目:web開發

今天就跟大家聊聊有關Vue中怎么利用watch監聽數組,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

1.普通的watch

data() {
  return {
    frontPoints: 0
  }
},
watch: {
  frontPoints(newValue, oldValue) {
    console.log(newValue)
  }
}

2.數組的watch:深拷貝

data() {
  return {
    winChips: new Array(11).fill(0)
  }
},
watch: {
  winChips: {
    handler(newValue, oldValue) {
      for (let i = 0; i < newValue.length; i++) {
        if (oldValue[i] != newValue[i]) {
          console.log(newValue)
        }
      }
    },
    deep: true
  }
}

3.對象的watch

data() {
  return {
    bet: {
      pokerState: 53,
      pokerHistory: 'local'
    }
  }
},
watch: {
  bet: {
    handler(newValue, oldValue) {
      console.log(newValue)
    },
    deep: true
  }
}

4.對象的具體屬性的watch:

data() {
  return {
    bet: {
      pokerState: 53,
      pokerHistory: 'local'
    }
  }
},
computed: {
  pokerHistory() {
    return this.bet.pokerHistory
  }
},
watch: {
  pokerHistory(newValue, oldValue) {
    console.log(newValue)
  }
}

看完上述內容,你們對Vue中怎么利用watch監聽數組有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

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

AI

西华县| 慈利县| 凤台县| 论坛| 凉城县| 嵩明县| 申扎县| 松阳县| 涡阳县| 城口县| 福海县| 昌都县| 尚志市| 积石山| 南阳市| 大竹县| 香格里拉县| 星子县| 大城县| 沅江市| 丰原市| 晋中市| 钟祥市| 铜川市| 新竹市| 磴口县| 徐州市| 杭州市| 集安市| 法库县| 沙雅县| 新疆| 福安市| 宁乡县| 封开县| 武隆县| 北碚区| 虎林市| 大同县| 临泽县| 新干县|