CroudTech / vue-fullcalendar

FullCalendar Wrapper for vue
MIT License
483 stars 100 forks source link

droppable config not work #152

Open sknightq opened 6 years ago

sknightq commented 6 years ago

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
      }
   }
 }
Afondevi commented 5 years ago

up

rafaelgfirmino commented 5 years ago

This property worked for me

config: {
    eventStartEditable: false
},