JSFiddle - React, Tailwind, and code Playground

by Murat Kezli

HTML

<div id="menu">
  <ol>
    <li v-for="todo in todos">
      {{ todo.text }}
    </li>
  </ol>
</div>

JavaScript

window.vue = new Vue({
  el: '#menu',
  data: {
    todos: [
      { text: 'JavaScript Öğren' },
      { text: 'Learn Vue' },
      { text: 'Build something awesome' }
    ]
  }
});