Open
Description
Initialization with instructions of doc from Vue3 as follow
import { createApp } from "vue";
import App from "./App.vue";
import VueSocketIOExt from "vue-socket.io-extended";
import io from "socket.io-client";
const app = createApp(App);
const socket = io("http://socketserver.com:1923");
app.use(VueSocketIOExt, socket);
app.mount("#app");
Getting errors in runtime
Uncaught TypeError: e is not a constructor
After some research, seems the problem is from the breaking change from Vue2 to Vue3, with the createApp api
https://nystudio107.com/blog/a-taste-of-vue-js-3-async-components-and-plugins/amp
https://alvarosaburido.dev/blog/how-to-migrate-your-library-from-vue2-to-vue3
Is there any timeline to cope with Vue3 updates?