watch: { healthData: { deep: true, // 深度监听 immediate: true, // true的话,不管数据是否有变化,进来就会运行 handler: function(newVal, oldVal){ } }, containerPortList: { deep: true, handler: function(newVal){ // 数据变化的相关操作 } }, // 监听对象里的某一项 'form.command'(newVal) { } },
watch: { healthData: { deep: true, // 深度监听 immediate: true, // true的话,不管数据是否有变化,进来就会运行 handler: function(newVal, oldVal){ } }, containerPortList: { deep: true, handler: function(newVal){ // 数据变化的相关操作 } }, // 监听对象里的某一项 'form.command'(newVal) { } },