# ElementPlusTablePro **Repository Path**: yimolong/element-plus-table-pro ## Basic Information - **Project Name**: ElementPlusTablePro - **Description**: 仿照antd pro 二次封装element-plus-table 添加一些实用的功能 - **Primary Language**: JavaScript - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2024-01-07 - **Last Updated**: 2026-01-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 仿照 antd pro 的搜索表格 对 element-plus-table 进行二次封装。支持多表头,完全兼容官方文档的所有属性,事件,插槽,方法。与官方版本同步更新 【elementPlus 表格扩展插件】 https://www.bilibili.com/video/BV1QN4y1s7gf/?share_source=copy_web&vd_source=d89bee5685527bb00d6328b67f985401 - [x] 刷新表格 - [x] 切换表格密度 - [x] 设置列 显示隐藏 排序 左右固定 重置 - [x] 全屏 ### 快速上手 ``` yarn add element-plus-table-pro ``` ``` import { BaseTable } from "element-plus-table-pro"; import "element-plus-table-pro/dist/style.css"; ``` 你可以完全把 BaseTable 组件当成 el-table 组件来用 前提项目里必须安装 element-plus 才可以正常使用 参考:https://element-plus.gitee.io/zh-CN/guide/quickstart.html ### 完整代码 ``` ```