项目作者: xaksis

项目描述 :
易于使用的强大数据表,适用于具有高级自定义功能的vuejs,包括排序,列过滤,分页,分组等
高级语言: Vue
项目地址: git://github.com/xaksis/vue-good-table.git
创建时间: 2017-05-16T14:31:30Z
项目社区:https://github.com/xaksis/vue-good-table

开源协议:MIT License

下载


Vue-good-table

npm
npm
npm

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/

:bangbang: Vue 3 Update
@borisflesch is working on a Vue 3 compatible version of VGT . Please follow/contribute to his repository as it gets production ready: vue-good-table-next

Installing

Install with npm:

  1. npm install --save vue-good-table

Import globally in app:

  1. import VueGoodTablePlugin from 'vue-good-table';
  2. // import the styles
  3. import 'vue-good-table/dist/vue-good-table.css'
  4. Vue.use(VueGoodTablePlugin);

Import into your component

  1. import { VueGoodTable } from 'vue-good-table';
  2. // add to component
  3. components: {
  4. VueGoodTable,
  5. }

Import into your component using Typescript

  1. // add to component
  2. components: {
  3. 'vue-good-table': require('vue-good-table').VueGoodTable,
  4. }
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