[Vuejs]-Vue draggable table with fixed column

0👍

Here is an updated version where you can drag into the timeslots. I put both views into one to make it a bit easier to read.

I changed the timeslot structure to be:

  times: [
    { id: 1, time: "09:00", people: [] },
    { id: 2, time: "09:30", people: [] },
    { id: 3, time: "10:00", people: [] }
  ],

So now you are just dragging the people into the times.people arrays.

Leave a comment