代码之家  ›  专栏  ›  技术社区  ›  Dmitry Bubnenkov

第二次点击后道具不影响孩子

  •  0
  • Dmitry Bubnenkov  · 技术社区  · 6 年前

    我写了一个简单的应用程序 https://jsfiddle.net/9tvekf26/ 子组件获取 props: ['isActive'], 更改其值以使模式窗口可见:

    data: function()
    {
      return {
        isActive: this.isActive // value from props
      }
    },
    

    closeModalWindow 我正在更改标志并向家长发送消息:

      closeModalWindow: function()
      {
        this.isActive = false;
        bus.$emit('my-event', this.isActive)
        console.log("Children Window closed: ", this.isActive)
      },  
    

    在父级中,我正在收听消息并更改其状态:

      mounted () {
        bus.$on('my-event', function (isActive) 
        {
          this.isActive = isActive
          console.log("Parent listened: ", this.isActive)
        });
      }
    

    模式窗口首次出现后应用程序停止工作的问题。

    1 回复  |  直到 6 年前
        1
  •  1
  •   mickaelw    6 年前

    我不明白总线变量。我认为使用global Vue对象不是一个好的做法。 最好是用 this. 组件的。

    1. 从子组件发出事件: this.$emit(...) 而不是 bus.$emit(...)
    2. @my-event="[method-name]"
    3. 我设定了 isActive 在方法中

    https://jsfiddle.net/9tvekf26/17/