import VueSocketIOExt from 'vue-socket.io-extended';
import { io } from 'socket.io-client';
const socketOne = io('http://localhost:3200/');
const socketTwo = io('http://localhost:3100/');
Vue.use(VueSocketIOExt, socketOne);
Vue.use(VueSocketIOExt, socketTwo);
After implementing the code above, I encountered an issue where only one socket was functioning. Is there a way to establish connections to both sockets simultaneously?