https://github.com/x-extends/vxe-table
vxe table 支持 vue2, vue3 的表格解决方案
https://github.com/x-extends/vxe-table
cell checkbox editable form grid input modal pager radio select switch table toolbar vue vue-table vxe-grid vxe-table vxe-ui
Last synced: 9 days ago
JSON representation
vxe table 支持 vue2, vue3 的表格解决方案
- Host: GitHub
- URL: https://github.com/x-extends/vxe-table
- Owner: x-extends
- License: mit
- Created: 2019-04-20T11:07:35.000Z (about 7 years ago)
- Default Branch: main
- Last Pushed: 2026-05-28T03:05:33.000Z (23 days ago)
- Last Synced: 2026-05-28T05:06:24.330Z (23 days ago)
- Topics: cell, checkbox, editable, form, grid, input, modal, pager, radio, select, switch, table, toolbar, vue, vue-table, vxe-grid, vxe-table, vxe-ui
- Language: TypeScript
- Homepage: https://vxetable.cn
- Size: 239 MB
- Stars: 8,579
- Watchers: 94
- Forks: 1,147
- Open Issues: 1,326
-
Metadata Files:
- Readme: README.en.md
- License: LICENSE
Awesome Lists containing this project
- StarryDivineSky - x-extends/vxe-table
- awesome-hacking-lists - x-extends/vxe-table - Vxe Table 支持 vue2, vue3 的表格解决方案 (TypeScript)
- awesome-vue - vxe-table - Vue form/table solution. (Components & Libraries / UI Components)
- awesome-web-cn - vxe-table - 一个 Vue 的 table 组件 (Uncategorized / Uncategorized)
- awesome-vue - vxe-table - Vue form/table solution. (Components & Libraries / UI Components)
- fucking-awesome-vue - vxe-table - Vue form/table solution. (Components & Libraries / UI Components)
README
# vxe-table
[简体中文](README.md) | [繁體中文](README.zh-TW.md) | English | [日本語](README.ja-JP.md)
[](https://github.com/x-extends/vxe-table/stargazers)
[](https://gitee.com/x-extends/vxe-table/stargazers)
[](https://gitcode.com/x-extends/vxe-table/stargazers)
[](https://www.npmjs.com/package/vxe-table)
[](https://github.com/x-extends/vxe-table/actions/workflows/webpack.yml)
[](https://npm-stat.com/charts.html?package=vxe-table)
[](https://github.com/x-extends/vxe-table/issues)
[](https://github.com/x-extends/vxe-table/issues?q=is%3Aissue+is%3Aclosed)
[](https://github.com/x-extends/vxe-table/pulls)
[](https://github.com/x-extends/vxe-table/pulls?q=is%3Apr+is%3Aclosed)
[](LICENSE)
A PC-end table component based on [Vxe UI](https://github.com/x-extends/vxe-pc-ui), enterprise-level table solution with support for copy-paste, data pivot tables, and virtual lists, featuring high performance.
## Browser Support
 |  |  |  | 
--- | --- | --- | --- | --- |
Latest ✔ | Latest ✔ | Latest ✔ | Latest ✔ | Latest ✔ |
## Installing
Version: [vue](https://www.npmjs.com/package/vue) 3.x
```shell
npm install vxe-table@next
```
Get on [unpkg](https://unpkg.com/vxe-table/) and [cdnjs](https://cdn.jsdelivr.net/npm/vxe-table/)
### NPM
```javascript
// ...
import VxeUITable from 'vxe-table'
import 'vxe-table/lib/style.css'
// ...
createApp(App).use(VxeUITable).mount('#app')
```
### CDN
Use a third-party CDN to remember to lock the version number to avoid being affected by incompatible updates.
***It is not recommended to use the CDN address of a third party in a formal environment because the connection can fail at any time***
```HTML
```
## Example
```html
import { ref } from 'vue'
const tableData = ref([
{ id: 10001, name: 'Test1', role: 'Develop', sex: 'Man', address: 'Shenzhen' },
{ id: 10002, name: 'Test2', role: 'Test', sex: 'Man', address: 'Guangzhou' },
{ id: 10003, name: 'Test3', role: 'PM', sex: 'Man', address: 'Shanghai' }
])
```
## Online Documents
👉 [UI Document](https://vxeui.com)
👉 [Table Document](https://vxetable.cn)
## Run the project
Install dependencies
```shell
npm run update
```
Start local debugging
```shell
npm run serve
```
Compile packaging, generated compiled directory: es,lib
```shell
npm run lib
```
## License
[MIT](LICENSE) © 2019-present, Xu Liangzhan