I'm trying to pass multiple props to a component via v-for --
<my-component v-for="(myobj, myid) in mydata"></my-component>
where mydata looks like --
mydata: {
42: { txt: "Home", url: "https://google.com/" },
43: { txt: "SO", url: "https://stackoverflow.com/" }
}
But couldn't get the simplest snippet to work --
https://codepen.io/jerryji/pen/yGOrbj?editors=1011
Any pointer will be much appreciated!