i have two list (A,B), and i want to clone item from A to B and update the target object when dropped element in list B.
the issue here is i cant update specific item in targeted list, for example i generate a random id by using :clone event from A, or @change event in B but its applied on second, third,.. items too so the id same for all items in list B.
it seems when change on list B there is something applied on all objects in the list so how can i avoid it, while i am use :list property not v-model.
can u please help how to solve this issue.
I am closing this one as it does not follow the CONTRIBUTING guideline.
I fixed that using cloneDeep from lodash in the clone function.