A simple, clean data table for VueJS (2.x) with essential features like sorting, column filtering, draggable row, pagination etc
npm install vue-table-draggable



An easy to use, clean and powerful data table for VueJS with essential features like sorting, column filtering,draggable row, pagination and much more - vue-good-table
Did vue-good-table just save you a bunch of time? Use some of them extra minutes to spread the joy!
Install with npm:
``bash`
npm install --save vue-good-table
Import globally in app:
`javascript
import VueGoodTablePlugin from 'vue-good-table';
// import the styles
import 'vue-good-table/dist/vue-good-table.css'
Vue.use(VueGoodTablePlugin);
`
Import into your component
`js
import { VueGoodTable } from 'vue-good-table';
// add to component
components: {
VueGoodTable,
}
`
##### Example table with grouped rows and column filters
!Advanced Screenshot
1. simply add one props
`bash`
:isDraggable="true"`
2. and if you like to get details about dragging then just bind below eventbash`
@on-dragged
it is simple guys :smile:
This project is licensed under the MIT License - see the LICENSE.md file for details