Skip to main content

All Questions

Tagged with
0 votes
2 answers
127 views

Vue : v-for store unmatched items to different container

I'm trying to build a trello like application In my case, I have a user_list as my categories and ticket_list as the items for each categories. Each item in ticket_list holds a corresponding user's id ...
aznmik's user avatar
  • 45
1 vote
1 answer
7k views

Vue draggable not updating index

I'm using Vue draggable to drag lists between categories: <draggable v-bind="dragOptions" @change="dragCat"> <div v-for="cat in categories" :key="cat.id"> <draggable v-model="...
lorhensen's user avatar