JSFiddle - React, Tailwind, and code Playground
by GopsAB
HTML
<div id="app1">
<div v-for="(object, index) in objects">
{{index + 1}}
<li v-for="(a,b) in Object.values(object)">
{{b}} {{a}}
</li>
</div>
</div>
JavaScript
var vm = new Vue({
el: '#app1',
data: {
objects:[
{
title: 'C',
author: 'Denis',
publishedAt: '1960'
},
{
title: 'Vue',
author: 'Yet To Find',
publishedAt: '2010'
}]}
})