Simple table component for Vue.js 2.x with pagination and sortable columns
Simple table component for Vue.js 2.x with pagination and sortable columns.
VueTable 
Simple table component for Vue.js 2.x with pagination and sortable columns
Documentation is available here: https://lossendae.github.io/vue-table
Installation
npm install --save @lossendae/vue-table
Then in your component
import Vue from 'vue'
import VueTable from '@lossendae/vue-table'
// install globally...
Vue.use('vue-table', Vuetable)
// Or in your Vue component
export default {
components: { Vuetable },
...
}