Vue 2.0 实例没有听到 vue-router 组件发出的事件

Vue 2.0 instance is not hearing events emitted by vue-router components

我正在使用 Vue 2.0-rc.6(目前最新)和 Vue-router 2.0-rc.5(目前最新)。

我试图在我的一个路由器组件中执行 this.$emit('custom-event'),并在我的 Vue 实例中执行 this.$on('custom-event', () => { console.log('I heard an event') }),但事件没有被监听。路由器组件本身正在监听事件而不是 Vue 实例。

有什么想法吗?

看看这个 jsfiddle

感谢 http://forum.vuejs.org/topic/5235/vue-2-0-instance-is-not-hearing-events-emitted-by-vue-router-components/2 中的 LinusBorg 指出来自 $emit 的事件不会传播到父实例。

虽然我使用了 LinusBorg 建议的解决方案,但我没有让它工作。相反,我通过 this.$router.app.$emit('eventname')

让它工作

来自 $emit 的事件不会传播到父实例。 父级必须主动在模板中的组件上监听它。

<router-view @eventname="callbackMethod" />

使用观察者我们可以实现同样的事情,意思是当我的路线更新时我们可以通过观察者捕捉事件。

    watch: {
        '$route': function(to, from) {
              console.log('To :', to.path); // current route
              console.log('from:', from.path); // old route
         }
    }