You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello guys! We are in process of vue3 migration of our application. We use jsplumb toolkit 2.x and jsplumbtoolkit-vue2. We are asking for help to migrate next piece of vue2 code to vue3 inside jsplumbtoolkit-vue2 lib. Or asking some suggestion: do we need to migrate jsplumb to 6.x in this case.
`var cls = Vue.extend(def.component), instance = new cls({
data: {
obj: data,
toolkit: toolkit,
surface: surface,
vertex: node
},
parent: toolkitComponent
// todo can listeners be passed through here?
});
instance.$mount();
node.data = data; // this copies in the new reactive data that vue made
instance.$el._ref = instance;
return instance.$el;`
Thanks a lot in advance!
The text was updated successfully, but these errors were encountered:
Hello guys! We are in process of vue3 migration of our application. We use jsplumb toolkit 2.x and jsplumbtoolkit-vue2. We are asking for help to migrate next piece of vue2 code to vue3 inside jsplumbtoolkit-vue2 lib. Or asking some suggestion: do we need to migrate jsplumb to 6.x in this case.
`var cls = Vue.extend(def.component), instance = new cls({
data: {
obj: data,
toolkit: toolkit,
surface: surface,
vertex: node
},
parent: toolkitComponent
// todo can listeners be passed through here?
});
instance.$mount();
node.data = data; // this copies in the new reactive data that vue made
instance.$el._ref = instance;
Thanks a lot in advance!
The text was updated successfully, but these errors were encountered: