1. 程式人生 > 其它 >VUE監聽resize

VUE監聽resize

技術標籤:解析度相容的精益求精VUE

data () {
    return {
      windowHeight: window.innerHeight
    }
}

mounted () {
    window.onresize = () => {
      this.windowHeight = window.innerHeight
    }
}

watch: {
  'windowHeight': function (newVal, oldVal) { //監聽螢幕寬度變化
    this.windowHeight = newVal
    console.
log(newVal) } }