# vue-good-table **Repository Path**: cyf2019/vue-good-table ## Basic Information - **Project Name**: vue-good-table - **Description**: An easy to use powerful data table for vuejs with advanced customizations including sorting, column filtering, pagination, grouping etc - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-01-29 - **Last Updated**: 2022-01-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Vue-good-table [![npm](https://img.shields.io/npm/dm/vue-good-table.svg?style=flat-square)](https://www.npmjs.com/package/vue-good-table) [![npm](https://img.shields.io/github/package-json/v/xaksis/vue-good-table.svg?style=flat-square)](https://github.com/xaksis/vue-good-table/releases) [![npm](https://img.shields.io/github/license/xaksis/vue-good-table.svg?style=flat-square)](https://github.com/xaksis/vue-good-table/blob/master/LICENSE) [![](https://data.jsdelivr.com/v1/package/npm/vue-good-table/badge)](https://www.jsdelivr.com/package/npm/vue-good-table) [![Twitter Follow](https://img.shields.io/twitter/follow/crayonbytes.svg?label=Follow&style=social)](https://twitter.com/crayonbytes) 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/](https://xaksis.github.io/vue-good-table/) ## Installing 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, } ``` Import into your component using Typescript ```typescript // add to component components: { 'vue-good-table': require('vue-good-table').VueGoodTable, } ``` ##### Example table with grouped rows and column filters ![Advanced Screenshot](README/images/vgt-table.advanced.png) ## Features * [Table Search](https://xaksis.github.io/vue-good-table/guide/configuration/search-options.html) * [Sorting](https://xaksis.github.io/vue-good-table/guide/configuration/sort-options.html) * [Column Filtering](https://xaksis.github.io/vue-good-table/guide/configuration/column-filter-options.html#filteroptions) * [Pagination](https://xaksis.github.io/vue-good-table/guide/configuration/pagination-options.html) * [Highly Customizable](https://xaksis.github.io/vue-good-table/guide/advanced/#custom-row-template) * [Checkbox Table](https://xaksis.github.io/vue-good-table/guide/advanced/checkbox-table.html) * [Grouped Rows Table](https://xaksis.github.io/vue-good-table/guide/advanced/grouped-table.html) * [Server Powered Table](https://xaksis.github.io/vue-good-table/guide/advanced/remote-workflow.html#why-remote-mode) * [Customizable Style and Themes](https://xaksis.github.io/vue-good-table/guide/style-configuration/) ## Upgrade Guide Hey there! coming from 1.x? find the [upgrade guide here](https://github.com/xaksis/vue-good-table/wiki/Guide-to-upgrade-from-1.x-to-v2.0) ## Authors * [xaksis](https://github.com/xaksis) * [Other Contributors](https://github.com/xaksis/vue-good-table/graphs/contributors) ## License This project is licensed under the MIT License - see the [LICENSE.md](LICENSE) file for details