Gathering detailed insights and metrics for vue-easytable
Gathering detailed insights and metrics for vue-easytable
Gathering detailed insights and metrics for vue-easytable
Gathering detailed insights and metrics for vue-easytable
A powerful data table based on vuejs. You can use it as data grid、Microsoft Excel or Google sheets. It supports virtual scroll、cell edit etc.
npm install vue-easytable
Typescript
Module System
Node Version
NPM Version
68
Supply Chain
94.9
Quality
75.5
Maintenance
50
Vulnerability
99.3
License
JavaScript (92.14%)
Less (5.36%)
HTML (1.44%)
CSS (1.06%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
3,767 Stars
2,120 Commits
760 Forks
86 Watchers
9 Branches
21 Contributors
Updated on Jul 11, 2025
Latest Version
2.27.1
Package Id
vue-easytable@2.27.1
Unpacked Size
1.91 MB
Size
421.96 kB
File Count
205
NPM Version
6.14.17
Node Version
14.21.1
Published on
May 21, 2023
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
49
English | 中文
Support this project by becoming a sponsor. Your logo or name will show up here with a link you provided. Become a sponsor
A powerful data table based on vue2.x You can use it as data grid、Microsoft Excel or Google sheets. It supports virtual scroll、cell edit etc.
Base components
Table component
If there is no feature you want, Please Tell Us
npm install vue-easytable
or
yarn add vue-easytable
Write the following in main.js:
1import Vue from "vue"; 2import "vue-easytable/libs/theme-default/index.css"; 3import VueEasytable from "vue-easytable"; 4 5Vue.use(VueEasytable); 6 7new Vue({ 8 el: "#app", 9 render: (h) => h(App), 10});
Example:
1<template> 2 <ve-table :columns="columns" :table-data="tableData" /> 3</template> 4 5<script> 6 export default { 7 data() { 8 return { 9 columns: [ 10 { field: "name", key: "a", title: "Name", align: "center" }, 11 { field: "date", key: "b", title: "Date", align: "left" }, 12 { field: "hobby", key: "c", title: "Hobby", align: "right" }, 13 { field: "address", key: "d", title: "Address" }, 14 ], 15 tableData: [ 16 { 17 name: "John", 18 date: "1900-05-20", 19 hobby: "coding and coding repeat", 20 address: "No.1 Century Avenue, Shanghai", 21 }, 22 { 23 name: "Dickerson", 24 date: "1910-06-20", 25 hobby: "coding and coding repeat", 26 address: "No.1 Century Avenue, Beijing", 27 }, 28 { 29 name: "Larsen", 30 date: "2000-07-20", 31 hobby: "coding and coding repeat", 32 address: "No.1 Century Avenue, Chongqing", 33 }, 34 { 35 name: "Geneva", 36 date: "2010-08-20", 37 hobby: "coding and coding repeat", 38 address: "No.1 Century Avenue, Xiamen", 39 }, 40 { 41 name: "Jami", 42 date: "2020-09-20", 43 hobby: "coding and coding repeat", 44 address: "No.1 Century Avenue, Shenzhen", 45 }, 46 ], 47 }; 48 }, 49 }; 50</script>
![]() IE / Edge | ![]() Firefox | ![]() Chrome | ![]() Safari | ![]() Opera |
---|---|---|---|---|
IE11, Edge | last 2 versions | last 2 versions | last 2 versions | last 2 versions |
If you want to contribute,just create a Pull Request
Thanks to the following friends for their contributions 🙏
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 7/22 approved changesets -- score normalized to 3
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- 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
security policy file not detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
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
Reason
96 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-14
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