vue watch

作者: Hello杨先生 | 来源:发表于2020-03-24 16:37 被阅读0次

    常用用法1.场景:表格初始进来需要调查询接口 getList(),然后input 改变会重新查询

    created(){
      this.getList()
    },
    watch: {
      inpVal(){
        this.getList()
      }
    }
    
    

    立即执行2.可以直接利用 watch 的immediate和handler属性简写

    watch: {
      inpVal:{
        handler: 'getList',
          immediate: true
      }
    }
    

    深度监听3.watch 的 deep 属性,深度监听,也就是监听复杂数据类型
    watch:{
    inpValObj:{
    handler(newVal,oldVal){
    console.log(newVal)
    console.log(oldVal)
    },
    deep:true
    }
    }

    相关文章

      网友评论

          本文标题:vue watch

          本文链接:https://www.haomeiwen.com/subject/fptayhtx.html