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
Hi,
I created the listeners for drop events : Vue.vueDragula.eventBus.$on("drop", function (args) {...
I add the listener when the component is mounted, now I want to remove the listener when its destroyed.
How can I remove the listeners.
drake.destroy is the original method, I tried the following, but it didnt work: Vue.vueDragula.destroy()
or var bag = Vue.vueDragula.find("questions-bag"); bag.drake.destroy();
The text was updated successfully, but these errors were encountered:
Hi,
I created the listeners for drop events :
Vue.vueDragula.eventBus.$on("drop", function (args) {...
I add the listener when the component is mounted, now I want to remove the listener when its destroyed.
How can I remove the listeners.
drake.destroy is the original method, I tried the following, but it didnt work:
Vue.vueDragula.destroy()
or
var bag = Vue.vueDragula.find("questions-bag"); bag.drake.destroy();
The text was updated successfully, but these errors were encountered: