You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 9, 2021. It is now read-only.
I have multiple Moveable objects and I want to get target id but still I got undefined
` <Moveable
class="moveable-line"
v-bind="moveable"
v-model="selectedSeat" @drAg="handleDrag" @rotate="handleRotate"
v-for="car in seats" :key="car.name"
here is my movables elements and my handleDrag method handleDrag({ target, transform}) { console.log("onDrag", transform); console.log("seatId", target.id); target.style.transform = transform; },
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I have multiple Moveable objects and I want to get target id but still I got undefined
` <Moveable
class="moveable-line"
v-bind="moveable"
v-model="selectedSeat"
@drAg="handleDrag"
@rotate="handleRotate"
v-for="car in seats" :key="car.name"
here is my movables elements and my handleDrag method
handleDrag({ target, transform}) { console.log("onDrag", transform); console.log("seatId", target.id); target.style.transform = transform; },
The text was updated successfully, but these errors were encountered: