Vuejs v-calendar

433 Views Asked by At

My Dispatch Calendar

I am developing a scheduling calendar that displays each employee and the task assigned to them. I need help in changing the employee axis with the timeline. Similar to the following picture: Desired Result

V-calendar code:

<v-calendar    
      category-show-all
      ref="calendar"
      event-overlap-mode="stack"
      v-model="filter.date"
      type="category"
      :categories="category.list"
      :events="category.events"
      :event-color="getEventColor"
      :now="minimumDate"
      @change="getEvents"
      :row-height=60
      :interval-height="20"
      @click:event="showEvent">
</v-calendar>

I am not sure how to change the axis of v-calendar

0

There are 0 best solutions below