vue中使用websocket
发送消息 export default { data() { return { websocket: null, path: 'ws://192.168.2.27:8082//websocket?type=order' } }, created() { this.init() }, methods: { // websocket初始化 init() { if (typeof (WebSocket) === 'undefined') { this.$message({