The data flow of my app begins with a backend API request which launches a Vue component using puppeteer. Is there any way I can pass that data from Backend (express) to the vue component which is launched other than making the Vue component call a backend API to fetch data?
I have tried calling a backend API from the launched component but this seems to be a work-around rather than an actual solution.