Gathering detailed insights and metrics for vxe-table-demonic
Gathering detailed insights and metrics for vxe-table-demonic
Gathering detailed insights and metrics for vxe-table-demonic
Gathering detailed insights and metrics for vxe-table-demonic
npm install vxe-table-demonic
Typescript
Module System
Node Version
NPM Version
TypeScript (93.22%)
SCSS (6.15%)
JavaScript (0.57%)
HTML (0.06%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
8,206 Stars
3,299 Commits
1,117 Forks
99 Watchers
10 Branches
33 Contributors
Updated on Jul 11, 2025
Latest Version
4.5.21
Package Id
vxe-table-demonic@4.5.21
Unpacked Size
9.29 MB
Size
1.86 MB
File Count
1,161
NPM Version
9.7.2
Node Version
18.17.1
Published on
Mar 12, 2024
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
2
38
A vue based PC form component, support add, delete, change, virtual list, virtual tree, lazy load, shortcut menu, data validation, print export, form rendering, data paging, modal window, custom template, renderer, JSON configuration...
Design concept
Plan
![]() | ![]() | ![]() | ![]() | ![]() |
---|---|---|---|---|
Latest ✔ | Latest ✔ | Latest ✔ | Latest ✔ | Latest ✔ |
Version: vue 3.x
1npm install vxe-table@next
1import { createApp } from 'vue' 2import VXETable from 'vxe-table' 3import 'vxe-table/lib/style.css' 4 5createApp(App).use(VXETable).mount('#app')
Remember to lock the version number in CDN mode to avoid being affected by incompatible updates
It is not recommended to use the CDN address of a third party for production, as the connection may fail at any time
1<!-- Style --> 2<link rel="stylesheet" href="https://unpkg.com/vxe-table@next/lib/style.css"> 3<!-- Script --> 4<script src="https://unpkg.com/xe-utils"></script> 5<script src="https://unpkg.com/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>
👉 Document
Participate in document improvement and supplement detailed documents.
Install dependencies
1npm install
Start local debugging
1npm run serve
Compile packaging, generated compiled directory: es,lib
1npm run lib
MIT © 2019-present, Xu Liangzhan
No vulnerabilities found.
Reason
30 commit(s) and 6 issue activity found in the last 90 days -- score normalized to 10
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
Found 1/30 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
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
branch protection not enabled on development/release branches
Details
Score
Last Scanned on 2025-06-30
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