vue-json-csv icon indicating copy to clipboard operation
vue-json-csv copied to clipboard

VueJS component to export Json Data into CSV file and download the resulting file.

Results 41 vue-json-csv issues
Sort by recently updated
recently updated
newest added

Hi, I have a button "Download" which will call an api to fetch data and then export that data to CSV. But I could not find how to do it...

Firstly thanks for creating this library, but ive just tried to implement it and im getting the following console error: **_vue-json-csv.common.js?2347:5361 Uncaught TypeError: Cannot read properties of undefined (reading 'call')_**...

Getting the following error, just loading the website. Not even pressing the download button. I was previously using vue-json-excel with no issues. Any ideas? Uncaught TypeError: Cannot read properties of...

File seems to download OK, but when opening I get a "can't open file" error. The files seem to still show in "blob" format when downloaded. Not sure if that's...

I am passing an object into the data prop that has the following structure: ``` Data: [ { data1: 'value', data2: ''value', dataArray: [ { subData1: 'value', subData2: 'value', subData3:...

Hello. Is there any way to use this asyncronously ? My use case is: - when the user clicks Dowload I neet to first retrieve the data from the server...

Thanks for making this! First issues I encountered... It's not clear as to what is expected when passing an object or what to return from a callback.

Hello, I'm trying to export an object that has a nested object, but when I do, the values for that column appear as `[object Object]`.

Hello. Thank you for your library. How I can generate filename after click button? ``` Errors(csv) createFileName () { var currentdate = new Date() this.CSVFileName = `log_${currentdate.getDate()}-${currentdate.getMonth()}-${currentdate.getFullYear()} ${currentdate.getHours()}-${currentdate.getMinutes()}-${currentdate.getSeconds()}.csv` this.$refs.export.generate() },...