All Projects → agrass-GitHub → agel-table

agrass-GitHub / agel-table

Licence: MIT license
element-ui table 的二次封装,保持灵活性,极简的思想,更少的代码,更多的功能,更快速的开发 ⬆⬆⬆

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to agel-table

vue-willtable
An editable table component for Vue.js 2.0
Stars: ✭ 119 (+357.69%)
Mutual labels:  table, element-ui
element-table
An extended table to integration with bootstrap-table and element-ui.
Stars: ✭ 18 (-30.77%)
Mutual labels:  table, element-ui
vue-elementui-freedomen
elementui 应用级框架
Stars: ✭ 27 (+3.85%)
Mutual labels:  table, element-ui
E-Table
基于ElementUI table组件修改,数据化表格结构,添加实用功能,快速生成表格
Stars: ✭ 65 (+150%)
Mutual labels:  table, element-ui
vue-ele-table
vue-ele-table | 基于 element-ui 数据驱动表格
Stars: ✭ 33 (+26.92%)
Mutual labels:  vue-table, element-ui
El Data Table
🥘Base on element-ui, makes crud easily
Stars: ✭ 358 (+1276.92%)
Mutual labels:  table, element-ui
hoc-element-table
📦 A Vue 3.x Table Component built on Webpack 5
Stars: ✭ 26 (+0%)
Mutual labels:  table, element-ui
Vxe Table
🐬 vxe-table vue 表格解决方案
Stars: ✭ 4,242 (+16215.38%)
Mutual labels:  vue-table, table
vue-table-for
Easily build a table for your records
Stars: ✭ 33 (+26.92%)
Mutual labels:  vue-table, table
Egrid
对 element-ui table 组件的封装
Stars: ✭ 175 (+573.08%)
Mutual labels:  table, element-ui
ag-grid
The best JavaScript Data Table for building Enterprise Applications. Supports React / Angular / Vue / Plain JavaScript.
Stars: ✭ 8,743 (+33526.92%)
Mutual labels:  vue-table, table
Vue Easytable
🍉 Table Component/ Data Grid / Data Table.Support Virtual Scroll,Column Fixed,Header Fixed,Header Grouping,Filter,Sort,Cell Ellipsis,Row Expand,Row Checkbox ...
Stars: ✭ 2,501 (+9519.23%)
Mutual labels:  vue-table, table
Blog2.0
基于Nuxt(ssr)+Vuetify+elementUi+nodeExpress+mongoDb的个人博客全栈项目
Stars: ✭ 20 (-23.08%)
Mutual labels:  element-ui
numpy-html
Render NumPy arrays as HTML tables
Stars: ✭ 38 (+46.15%)
Mutual labels:  table
vue-address
多级联动地址选择器
Stars: ✭ 33 (+26.92%)
Mutual labels:  element-ui
medium-toc
Easily create a table of contents for your Medium articles in just one click. ✨
Stars: ✭ 33 (+26.92%)
Mutual labels:  table
termtables
🖥️ Pretty tables in the terminal
Stars: ✭ 85 (+226.92%)
Mutual labels:  table
vue-mxgraph-samples
在 vue2 中使用 mxgraph 的一些用例 / used mxgraph in vue2
Stars: ✭ 16 (-38.46%)
Mutual labels:  element-ui
DTE
Generate C# class from database table
Stars: ✭ 26 (+0%)
Mutual labels:  table
markdown-it-multimd-table
Multimarkdown table syntax plugin for markdown-it markdown parser
Stars: ✭ 104 (+300%)
Mutual labels:  table

agel-table | 使 element-ui table 组件更简单

MIT Licence npm download

文档

特性

该组件的思想就是以一个 table 对象来做所有的操作,哪怕页上多个列表也不用在 data 定义一堆 data1,data2,loading1,loading2 ... 等变量,更加简单明了,适用于 vue2+elementUI。

  • 保持灵活性,极简的思想,更少的代码,更多的功能,更快速的开发
  • 支持 element-ui table 组件的所有 api, slot, event, method
  • 纯数据配置
  • 集成分页组件
  • 菜单列
  • 动态显隐列
  • 数据代理
  • 自动合并相同行
  • 虚拟滚动支持大数据渲染 10w+
  • 跟随容器大小自适应高度

安装使用

npm install agel-table --save

如此简单

<template>
  <agel-table v-model="table"></agel-table>
</template>
 
<script>
export default {
  data() {
    return {
      table: {
        // ...
      },
    };
  },
};
</script>
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].