JSFiddle - React, Tailwind, and code Playground

by GopsAB

HTML

<div id="app1">
  <ol>
    <div v-for="object in objects">
      {{index}} 
      <li v-for="value in object">
         {{value}}
      </li>
    </div>
  </ol>
</div>

JavaScript

new Vue({
  el: '#app1',
  data: {
  objects:[
  {
    object: {
      title: 'C',
      author: 'Denis',
      publishedAt: '1960'
    }
  },
  {
    object: {
      title: 'Vue',
      author: 'Yet To Find',
      publishedAt: '2010'
    }
  }]}
})