码迷,mamicode.com
首页 > 其他好文 > 详细

关于vue 数据监听的处理

时间:2020-03-02 15:12:35      阅读:81      评论:0      收藏:0      [点我收藏+]

标签:form   处理   and   span   watch   new   his   访问   com   

watch: {
      healthData: {
        deep: true, // 深度监听
        immediate: true, // true的话,不管数据是否有变化,进来就会运行
        handler: function(newVal, oldVal){
          this.form = newVal;
        }
      },
      containerPortList: {
        deep: true,
        handler: function(newVal){
          // 访问方式端口数据变化的相关操作
          if(!this.form.port) return;
          if(!newVal.includes(this.form.port)) {
            this.$set(this.form,‘port‘, null);
          }
        }
      },
       // 监听对象里的某一项
      ‘form.command‘(newVal) {
        if(newVal) {
          this.$set(this.form, ‘commandList‘, [newVal]);
        }
      }
    },    

 

关于vue 数据监听的处理

标签:form   处理   and   span   watch   new   his   访问   com   

原文地址:https://www.cnblogs.com/fczbk/p/12395236.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!