Skip to content

Introduction in 10 seconds

Andrea edited this page Jun 14, 2016 · 5 revisions
  1. Open codepen.io
  2. HTML:
<smart-table 
            :body="body" 
            :order-by="['name']"
            >
</smart-table>
  1. Javascript
new Vue({
  el: 'body',
  data: {
    body: [
      {name: 'Bob'},
      {name: 'Alice'}
    ]
  }
})
  1. ???
  2. Profit!

Clone this wiki locally