I have a some situation in my current project when I must connect two technologies.
My project is build in Vue 3 composition
api. I wand to add to then 3rd party SDK. Problem what I have is with SDK because right now support only react.
All widgets and components I can implement in react
. At this stage of product is too late to move everything from Vue
to react
, and client want to have this SDK implemented in project.
My question is: is it possible to create one simple app in react
which will be have implementation of SDK and put them into Vue
component?
What about performance of this solution? Any one have similar problem? How to find best way to solve this?
I heard about Veaury
but I never use that. Maybe this is good idea? How you thinking?