I'm new to vuejs. I started to play with v2. I have a simple array with object in my instance data property:
items: [{"theProprtyName": "thePropertyValue"}]
I do simple v-for:
<v-list>
<v-list-item v-for="item in items">
<span v-for="(key, value) in map">
{{key}}--{{value}}
</span>
</v-list-item>
</v-list>
renders:
theProprtyName--thePropertyValue
Is there a more elegant way to create to achieve the end result?
Thanks in advance