21 lines
No EOL
341 B
Vue
21 lines
No EOL
341 B
Vue
<template>
|
|
<button @click="connect()">Connect</button>
|
|
<button @click="disconnect()">Disconnect</button>
|
|
</template>
|
|
|
|
<script>
|
|
import { socket } from "@/socket";
|
|
|
|
export default {
|
|
name: "ConnectionManager",
|
|
|
|
methods: {
|
|
connect() {
|
|
socket.connect();
|
|
},
|
|
disconnect() {
|
|
socket.disconnect();
|
|
}
|
|
}
|
|
}
|
|
</script> |