mirror of
https://github.com/tenrok/vue-native-websocket.git
synced 2026-06-23 18:20:35 +03:00
readme
This commit is contained in:
@@ -15,7 +15,7 @@ npm install vue-socket.io --save
|
|||||||
```
|
```
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
##### Configration
|
#### Configration
|
||||||
Automaticly socket connect from url string
|
Automaticly socket connect from url string
|
||||||
``` js
|
``` js
|
||||||
Vue.use(VueSocketio, 'http://socketserver.com:1923');
|
Vue.use(VueSocketio, 'http://socketserver.com:1923');
|
||||||
@@ -32,7 +32,7 @@ import store from './yourstore'
|
|||||||
Vue.use(VueSocketio, socketio('http://socketserver.com:1923'), store);
|
Vue.use(VueSocketio, socketio('http://socketserver.com:1923'), store);
|
||||||
```
|
```
|
||||||
|
|
||||||
##### On Vuejs instance usage
|
#### On Vuejs instance usage
|
||||||
``` js
|
``` js
|
||||||
var vm = new Vue({
|
var vm = new Vue({
|
||||||
sockets:{
|
sockets:{
|
||||||
@@ -52,7 +52,7 @@ var vm = new Vue({
|
|||||||
})
|
})
|
||||||
```
|
```
|
||||||
|
|
||||||
##### Dynamic socket event listenlers
|
#### Dynamic socket event listenlers
|
||||||
Create new listenler
|
Create new listenler
|
||||||
``` js
|
``` js
|
||||||
this.$options.sockets.event_name = (data) => {
|
this.$options.sockets.event_name = (data) => {
|
||||||
@@ -64,7 +64,7 @@ Remove exist listenler
|
|||||||
delete this.$options.sockets.event_name;
|
delete this.$options.sockets.event_name;
|
||||||
```
|
```
|
||||||
|
|
||||||
##### Vuex Store integration
|
#### Vuex Store integration
|
||||||
Example store, socket mutations always have "SOCKET_" prefix
|
Example store, socket mutations always have "SOCKET_" prefix
|
||||||
``` js
|
``` js
|
||||||
import Vue from 'vue'
|
import Vue from 'vue'
|
||||||
|
|||||||
Reference in New Issue
Block a user