Vue

by khamer

HTML

<div id="app">
  <ul><li v-for="i in [1,2,3,4,5]" :key="i" v-text="i"></li></ul>
</div>

Vue

new Vue({el: "#app"})