[Vuejs]-Select time range in date range fullcalendar vue

0👍

The closest thing to what you’ve shown in your question is a simple recurring event.

For example:

{
  status: "Pending",
  title: "title",
  startRecur: "2022-10-19",
  endRecur: "2022-10-21",
  startTime: '10:00',
  endTime: '12:00',
}

This will create a series of events occurring between the times specified in startTime and endTime, which will show on every day between startRecur and endRecur (the end date being exclusive). See the documentation link above for more details and options.

Demo: https://codepen.io/ADyson82/pen/ExLBbNO

Leave a comment