Gathering detailed insights and metrics for vxe-table
Gathering detailed insights and metrics for vxe-table
npm install vxe-table
Typescript
Module System
Node Version
NPM Version
79.6
Supply Chain
86.2
Quality
94
Maintenance
100
Vulnerability
100
License
TypeScript (92.6%)
SCSS (6.68%)
JavaScript (0.65%)
HTML (0.07%)
Total Downloads
4,450,422
Last Day
2,779
Last Week
11,062
Last Month
76,690
Last Year
1,214,851
7,850 Stars
3,188 Commits
1,077 Forks
99 Watching
6 Branches
34 Contributors
Minified
Minified + Gzipped
Latest Version
4.10.5
Package Id
vxe-table@4.10.5
Unpacked Size
8.44 MB
Size
1.55 MB
File Count
447
NPM Version
10.9.0
Node Version
20.14.0
Publised On
09 Jan 2025
Cumulative downloads
Total Downloads
Last day
-30.2%
2,779
Compared to previous day
Last week
-55.8%
11,062
Compared to previous week
Last month
13.8%
76,690
Compared to previous month
Last year
-2.5%
1,214,851
Compared to previous year
1
35
一個基於 vue 的PC端表格組件,支持增刪改查、虛擬樹、拖拽排序、懶加載、快捷菜單、數據校驗、導入/匯出/列印、表單渲染、自定義模板、渲染器、JSON 配置式…
![]() | ![]() | ![]() | ![]() | ![]() |
---|---|---|---|---|
Latest ✔ | Latest ✔ | Latest ✔ | Latest ✔ | Latest ✔ |
版本:vue 3.x
1npm install vxe-table@next
1// ... 2import VxeTable from 'vxe-table' 3import 'vxe-table/lib/style.css' 4// ... 5 6createApp(App).use(VxeTable).mount('#app')
1// ... 2import VxeTable from 'vxe-table' 3import 'vxe-table/lib/style.css' 4// ... 5 6import VxeUI from 'vxe-pc-ui' 7import 'vxe-pc-ui/lib/style.css' 8// ... 9 10createApp(App).use(VxeUI).use(VxeTable).mount('#app')
使用第三方 CDN 方式記得鎖定版本號,避免受到非兼容性更新的影響
不建議將第三方的 CDN 地址用於正式環境,因爲該連接隨時都可能會失效
1<!-- style --> 2<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/vxe-pc-ui/lib/style.css"> 3<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/vxe-table@next/lib/style.css"> 4<!-- vue --> 5<script src="https://cdn.jsdelivr.net/npm/vue"></script> 6<!-- table --> 7<script src="https://cdn.jsdelivr.net/npm/xe-utils"></script> 8<script src="https://cdn.jsdelivr.net/npm/vxe-pc-ui"></script> 9<script src="https://cdn.jsdelivr.net/npm/vxe-table@next"></script>
1<template> 2 <div> 3 <vxe-table :data="tableData"> 4 <vxe-column type="seq" title="Seq" width="60"></vxe-column> 5 <vxe-column field="name" title="Name"></vxe-column> 6 <vxe-column field="role" title="Role"></vxe-column> 7 <vxe-colgroup title="Group1"> 8 <vxe-column field="sex" title="Sex"></vxe-column> 9 <vxe-column field="address" title="Address"></vxe-column> 10 </vxe-colgroup> 11 </vxe-table> 12 </div> 13</template> 14 15<script lang="ts" setup> 16import { ref } from 'vue' 17 18const tableData = ref([ 19 { id: 10001, name: 'Test1', role: 'Develop', sex: 'Man', address: 'Shenzhen' }, 20 { id: 10002, name: 'Test2', role: 'Test', sex: 'Man', address: 'Guangzhou' }, 21 { id: 10003, name: 'Test3', role: 'PM', sex: 'Man', address: 'Shanghai' } 22]) 23</script>
安裝依賴
1npm run update
啓動本地調試
1npm run serve
編譯打包,生成編譯後的目錄:es,lib
1npm run lib
Thank you to everyone who contributed to this project.
MIT © 2019-present, Xu Liangzhan
Stable Version
1
3.5/10
Summary
vxe-table Cross-site Scripting vulnerability
Affected Versions
< 3.7.10
Patched Versions
3.7.10
Reason
no dangerous workflow patterns detected
Reason
30 commit(s) and 10 issue activity found in the last 90 days -- score normalized to 10
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
0 existing vulnerabilities detected
Reason
Found 2/27 approved changesets -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-01-27
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More