@lossendae/vue-table
v0.1.8
Published
Simple table component for Vue.js 2.x with pagination and sortable columns
Downloads
36
Maintainers
Readme
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-tableThen 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 },
...
} 