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 update Chrome to 62, vue-sortable does not trigger onUpdate event. Other people using Chrome 61 don't have this problem
html by jQuery $('<ul class="me-slide-title-wrap" v-sortable="options"></ul>');
vue code Vue.use(Sortable); this.vue = new Vue({ el, data () { return { slides, currentSlide, dragged: false, options: { onUpdate: this.onUpdate, }, }; }, methods: { onUpdate (event) { console.log('update', this.dragged) updateSlides(event); }, active(id) { console.log('active') }, dragenter (id) { console.log('drag enter', this.dragged); }, dragleave () { console.log('drag leave', this.dragged); }, dragstart () { console.log('drag start', this.dragged); }, dragend () { console.log('drag end', this.dragged); this.dragged = false; }, }, });
The text was updated successfully, but these errors were encountered:
Hi sagalbot,
I create pull request to solve this issue. Could you please check and merge it Thanks
Sorry, something went wrong.
any updates about this?
any updates?
Use passive mode
so the repository is abandoned? @sagalbot
No branches or pull requests
I update Chrome to 62, vue-sortable does not trigger onUpdate event.
Other people using Chrome 61 don't have this problem
The text was updated successfully, but these errors were encountered: