Vue

by Lloyd Atkinson

HTML

<div id="app">
  
</div>

Vue

new Vue({
  el: "#app",
  data: {
    todos: [ 'red', 'yellow', 'green' ]
  },
})