在 vue 独立组件中使用 laravel echo Posted on 2020-01-18 Edited on 2022-01-01 In Living Disqus: 在 vue 独立组件中使用 laravel echo引入包 123import Echo from "laravel-echo"window.io = require('socket.io-client'); 设置新的Echo,同时监听新的echo 123456789this.echo = new Echo({ broadcaster: 'socket.io', host: this.url.host, key: this.url.key, })this.echo.channel(this.url.channel) .listen(this.url.listen, (res) => { this.pushData(res) }) 以上