0👍
The onMove event should catch every moved item, use that to up your total drag count. You can also pass the event argument if you want more information of the move event in your method.
methods: {
onMove: function(event) {
this.dragcount++
}
}
Refer to the documentation the vue library is wrapping, it’s all in here.
- [Vuejs]-Data Reactivity On Post Request Vue
- [Vuejs]-How to import data from API to use as Fuse list in Vue app
Source:stackexchange.com