We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I used vue-dragula in my project for the drag & drop list requirement.
vue-dragula
It's worked perfect. But I have the below error at that hold element remove time.
Error in directive dragula update hook: "TypeError: Cannot read property 'drake' of undefined"
My code sample below
(template HTML code)
<ul v-dragula="dragDatas" bag="action-bag"> <li v-for="(drDatas, drIndex) in dragDatas" :key="drDatas.id">{{drDatas.name}}</li> </ul>
(Script code)
import 'vue-dragula/styles/dragula.css'; created () { Vue.vueDragula.options('action-bag', { invalid: function (el, handle) { return // CONDITION BASED } }); }, mounted () { const self = this; Vue.vueDragula.eventBus.$on('drop', async function ([bag, curElmt, allElmts]) { // drop event based functionalities }) }
I think this error is Vue.vueDragula.eventBus.$on event listener error. If anyone have this solution Kindly share me
Vue.vueDragula.eventBus.$on
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I used
vue-dragula
in my project for the drag & drop list requirement.It's worked perfect. But I have the below error at that hold element remove time.
My code sample below
(template HTML code)
(Script code)
I think this error is
Vue.vueDragula.eventBus.$on
event listener error.If anyone have this solution Kindly share me
The text was updated successfully, but these errors were encountered: