标签: javascript php laravel vue.js
我有一些创建聊天室的代码,在beforeDestroy方法中,我想退订聊天室频道。我使用以下代码来实现这一点,但是这不起作用:
beforeDestroy() { let roomId = this.app.$route.params.id; pusher.unsubscribe('presence-chat.'+roomId); },