Vue Socket监听和发送事件的基本用法

安装Vue和Socket.io

npm install --save vue

npm install --save socket.io-client

利用Socket.io建立连接

import io from 'socket.io-client'

const socket = io('http://localhost:3000')

利用$socket变量来引入socket.io-client监听事件

mounted() {
  this.$socket.on('connect', () => {
    console.log('Connected to server!')
  })
}

利用$socketsocket的emit方法来发送事件

methods: {
  sendMessage() {
    this.$socket.emit('message', this.message)
  }
}
以上是编程学习网小编为您介绍的“Vue Socket监听和发送事件的基本用法”的全面内容,想了解更多关于 vuejs 内容,请继续关注编程基础学习网。

本文标题为:Vue Socket监听和发送事件的基本用法

基础教程推荐