0

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

Matteo
  • 53
  • 1
  • 5

1 Answers1

1

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

cpppatrick
  • 609
  • 3
  • 12
  • 29