2.19.6 • Published 4 years ago

skydrive-vue-good-table v2.19.6

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

Vue-good-table

npm npm npm npm.io Twitter Follow

Attention ! This is fork version. Use at your own risk !

VersionOfficial VersionChanges
2.19.42.19.31. Pagination Options allow pass showingLabel, recordsLabel2. Pagination will display current page pagination info if mode = 'pages'3. Enhance Nocturnal Theme4. Fix pagination Page Number and Per Page dropdown sync issue when pagination position = 'both'
2.19.52.19.31. td with vgt-checkbox-col class will have same css with th
2.19.62.19.4https://github.com/xaksis/vue-good-table/releases/tag/v2.19.4

Vue-good-table an easy to use, clean and powerful data table for VueJS with essential features like sorting, column filtering, pagination and much more - xaksis.github.io/vue-good-table/

Installing

Install with npm:

npm install --save vue-good-table

Import globally in app:

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

import { VueGoodTable } from 'vue-good-table';

// add to component
components: {
  VueGoodTable,
}

Import into your component using Typescript

// add to component
components: {
  'vue-good-table': require('vue-good-table').VueGoodTable,
}
Example table with grouped rows and column filters

Advanced Screenshot

Features

Upgrade Guide

Hey there! coming from 1.x? find the upgrade guide here

Authors

License

This project is licensed under the MIT License - see the LICENSE.md file for details