Matteo
Matteo

Reputation: 63

Export data to excel from vue2

I have an app built in Vue2 and I need to export data to excel, displaying a result like the image you find below.

I have gone through several vue libraries, but I have not found something that allow me to create a layout like that.

The only one seems this one: https://github.com/securedeveloper/react-data-export but it's for React.

Can somebody point me out a vue or js library che does the job?

Many thanks

enter image description here

Upvotes: 0

Views: 7736

Answers (1)

cpppatrick
cpppatrick

Reputation: 759

XLSX might be a good solution to your problem. It's not specific to Vue 2, but it does allow you to have control over which cells you write to.

SO question for reference

Upvotes: 1

Related Questions