vue-bulma / modal

Modal component for Vue Bulma
MIT License
49 stars 28 forks source link

Open event for modal not sent? #28

Open MadGeorge opened 6 years ago

MadGeorge commented 6 years ago

Hello. I am trying to handle data passed to modal but it looks like open event does not received in my handler

mounted () {
      this.$on('open', () => {
         // Not executed
      })
      this.$on('opened', () => {
        // Not executed
      })

      this.$on('close', () => {
        // Executed!
      })
},
...
"vue-bulma-modal": "1.0.1",
...