Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

CrastyCrap's avatar

Export as excel and pdf in vue 3

Greeting everyone, i have a group of data let's say for example

{
		name: "Edward Swift",
		age: "25",
		job: "accountent"
},

{
		name: "Alise",
		age: "25",
		job: "HR manager"
},

i want to allow the client to export this data in form of excel or pdf, I tried to find any plugin to do that for Vue 3 but i cant. any recommendations

0 likes
6 replies
CrastyCrap's avatar

@Tray2 i dont want to heavy the server by this, that's why i want to do it on front size

Tray2's avatar

@CrastyCrap So you are going to make it super slow for some users on old devices instead?

CrastyCrap's avatar

@Tray2 of course not i don't manged to convert a lot of data to excel cheat it just 10 or 20 per request so users with old devices will not suffer as there isn't a lot of data, in other hands if the server gets a lot of this request in the same time it will slow down, in general, the system I am working on it will serve 10,000 users so i don't want to make any heavy load on server to lower it's cost as much i can

Please or to participate in this conversation.