[Vuejs]-Vue get dataset type object

0👍

[Step 1]
you can store your dataset as json string like below

:data-address="JSON.stringify(adr)"

[Step 2]
then on read you can convert this to json object like below

var selectedItem = JSON.parse(e.target.dataset.address);

Leave a comment