We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57dd19f commit 89c572bCopy full SHA for 89c572b
src/components/Json2Excel.vue
@@ -95,7 +95,7 @@
95
makeExport() {
96
let name = `${this.filename}${this.counter ? '('+ this.counter++ + ')' : ''}`;
97
this.workBook.SheetNames = [name];
98
- this.workBook.Sheets.test = this.workSheet;
+ this.workBook.Sheets[name] = this.workSheet;
99
100
xlsx.writeFile(this.workBook, `${name}.xlsx`);
101
},
0 commit comments