wrappedCardList" class="item" v-show="card.isShown" :card="card" :key="card.cardId" /> </Draggable> : computed: { wrappedCardList: { get() { return this.pipeLine.cardList; }, set(value) { console.log(value); this.updateCardOrder({ pipeLineId: this.pipeLine.pipeLineId, cardList: value, }); }, }, D&D完了時にsetが 呼ばれる [ {cardId: 1, title: ....}, {cardId: 2, title: ....}, {cardId: 3, title: ....}, ] application/vuejs/src/pages/Board/components/BoardArea/PipeLine.vue