Skip to content

Introduction in 10 seconds

Andrea edited this page Sep 21, 2016 · 5 revisions

1 - Open codepen.io

2 - HTML:

<smart-table 
  :body="body" 
  :order-by="['name']"></smart-table>

3 - Javascript

new Vue({
  el: 'body',
  data: {
    body: [
      {name: 'Bob'},
      {name: 'Alice'}
    ]
  }
})

4 - ???

5 - Profit!

Clone this wiki locally