[Vuejs]-No callback on channel laravel echo with VUE

0👍

This error shouldn’t interfere with the subscription, but of course you wouldn’t want it showing the in console. To stop this you can add a handler for the event as follows:

window.Echo.private(`chat`).listen("pusher_internal:subscription_succeeded", () => {
            console.log('Successfully subscribed to private-chat);
        });

Leave a comment