I have tried to create CSV file in vue.js. server send readyment data which is we can directly write data in csv file. data from server response is
head1, head2, head3, head4
1,2,3,4
5,6,7,8
This is my response formate from the server. I want to write this data in CSV format and give download CSV functionality.
Any Idea about create and write a file in vue.js?