Gathering detailed insights and metrics for vue-excel-xlsx
Gathering detailed insights and metrics for vue-excel-xlsx
Gathering detailed insights and metrics for vue-excel-xlsx
Gathering detailed insights and metrics for vue-excel-xlsx
npm install vue-excel-xlsx
Typescript
Module System
Node Version
NPM Version
Vue (95.09%)
JavaScript (4.91%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
42 Stars
53 Commits
29 Forks
2 Watchers
9 Branches
1 Contributors
Updated on Apr 12, 2025
Latest Version
1.2.2
Package Id
vue-excel-xlsx@1.2.2
Unpacked Size
8.49 kB
Size
2.61 kB
File Count
5
NPM Version
8.1.1
Node Version
16.11.1
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
1
3
Convert your data as an XLSX file
1 npm install vue-excel-xlsx --save
1 yarn add vue-excel-xlsx
1 import VueExcelXlsx from "vue-excel-xlsx"; 2 import Vue from "vue"; 3 4 Vue.use(VueExcelXlsx);
1 <vue-excel-xlsx 2 :data="data" 3 :columns="columns" 4 :file-name="'filename'" 5 :file-type="'xlsx'" 6 :sheet-name="'sheetname'" 7 > 8 Download 9 </vue-excel-xlsx>
1 data() { 2 return { 3 columns : [ 4 { 5 label: "Product", 6 field: "product", 7 }, 8 { 9 label: "Price", 10 field: "price", 11 dataFormat: this.priceFormat 12 }, 13 { 14 label: "Quantity", 15 field: "quantity", 16 }, 17 { 18 label: "Country", 19 field: "address.country", 20 }, 21 { 22 label: "City", 23 field: "address.city", 24 } 25 ], 26 data : [ 27 { 28 product: "Beverage", 29 price: 10, 30 quantity: 2, 31 address: { 32 country: 'Armenia', 33 city: 'Yerevan', 34 } 35 }, 36 { 37 product: "Snack", 38 price: 12, 39 quantity: 6, 40 address: { 41 country: 'Armenia', 42 city: 'Yerevan', 43 } 44 }, 45 { 46 product: "Beverage", 47 price: 10, 48 quantity: 5, 49 address: { 50 country: 'Armenia', 51 city: 'Yerevan', 52 } 53 }, 54 { 55 product: "Snack", 56 price: 12, 57 quantity: 3, 58 address: { 59 country: 'Armenia', 60 city: 'Yerevan', 61 } 62 } 63 ], 64 } 65 }, 66 methods: { 67 priceFormat(value){ 68 return '$ ' + value; 69 } 70 }
Name | Type | Description | Default Value |
---|---|---|---|
columns | Array | Columns configuration | [] |
data | Array | Rows data | [] |
fileName | String | The name of excel file | excel |
sheetName | String | The SheetName of excel file | SheetName |
fileType | String | The Type of excel file. (xlsx, xls) | xlsx |
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 0/20 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
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
Reason
29 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
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