@lossendae/vue-table
Version:
Simple table component for Vue.js 2.x with pagination and sortable columns
33 lines (21 loc) • 724 B
Markdown
Simple table component for Vue.js 2.x with pagination and sortable columns
Documentation is available here: https://lossendae.github.io/vue-table
```
npm install --save @lossendae/vue-table
```
Then in your component
```js
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 },
...
}
```
[](https://github.com/lossendae/vue-table/blob/master/LICENSE)