I'm trying to use Vue Devtools to debug my App and I was wondering how to retrieve the info I see after an event.
<l-marker v-for="marker in markers"
:lat-lng="marker.position"
:key="marker.id"
:draggable=true
@dragend="dragend">
</l-marker>
My event is @dragend="dragend",How can I get the lat and lng values?
Edit: Is this correct?
dragend: function(event){
console.log(event.target._latlng);
}