有没有办法让多个 Vue 有一个计算的监听器处理相同的值?

Is there any way to have multiple Vues have a computed listener working on the same value?

设置:

我有多个 Vue 组件,每个组件在我的网络应用程序的不同对话框中都有多个实例。

对于每种类型的组件,我都有一个全局状态(下例中的handrailOptions),以便每种类型的组件在对话框中保持同步。

我希望这样,当一个组件超出步骤 1 时,我会在该对话框中隐藏其他组件。

我使用 computed / watch 组合很好地实现了这一点。

但是,我的问题是,如果我尝试通过超过 1 个 Vue 实例来监听计算,它似乎会劫持其他监听器。

问题

下面是我正在使用的简化版本,当应用程序启动时,控制台会记录 'computed 1' 和 'computed 2'。但是当我改变 handrailOptions.step 时,只有第二个触发。 ('computed 2' & 'watched 2')

有没有办法让多个 Vue 有一个计算监听器处理同一个值?

handrailOptions = {
    step: 1
};

Vue.component( 'handrail-options', {
    template: '#module-handrail-options',
    data: function() {
        return handrailOptions;
    },
});

var checkoutDialog = new Vue({
    el: '#dialog-checkout',
    computed: {
        newHandrailStep() {
            console.log('computed 1');
            return handrailOptions.step;
        }
    },
    watch: {
        newHandrailStep( test ) {
            console.log('watched 1');
        }
    }
});

new Vue({
    el: '#dialog-estimate-questions',
    computed: {
        newHandrailStep() {
            console.log('computed 2');
            return handrailOptions.step;
        }
    },
    watch: {
        newHandrailStep( test ) {
            console.log('watched 2');
        }
    }
});

这按预期工作。我通过创建新的 Vue 的数据对象使 handrailOptions 响应。像您所做的那样,将其设为组件的数据对象也可以,但组件必须至少实例化一次。无论如何,为全局设置一个对象更有意义。

handrailOptions = {
  step: 1
};

// Make it responsive
new Vue({data: handrailOptions});

var checkoutDialog = new Vue({
  el: '#dialog-checkout',
  computed: {
    newHandrailStep() {
      console.log('computed 1', handrailOptions.step);
      return handrailOptions.step;
    }
  },
  watch: {
    newHandrailStep(test) {
      console.log('watched 1');
    }
  }
});

new Vue({
  el: '#dialog-estimate-questions',
  computed: {
    newHandrailStep() {
      console.log('computed 2', handrailOptions.step);
      return handrailOptions.step;
    }
  },
  watch: {
    newHandrailStep(test) {
      console.log('watched 2');
    }
  }
});

setInterval(() => ++handrailOptions.step, 1500);
<script src="//cdnjs.cloudflare.com/ajax/libs/vue/2.3.4/vue.min.js"></script>
<div id="dialog-estimate-questions">
  Main step {{newHandrailStep}}
</div>
<div id="dialog-checkout">
    CD step {{newHandrailStep}}
</div>