I found the events (VUE data) will not be updated after I dragging an event( the start of the event should be updated). So I wanted to disable the feature of draggable.
I set the following code but not work
data() {
const self = this
return {
header: {
left: 'title',
center: '',
right: 'today prev,next'
},
selectable: true,
config: {
droppable: false // not work
}
}
}
I found the events (VUE data) will not be updated after I dragging an event( the start of the event should be updated). So I wanted to disable the feature of draggable. I set the following code but not work