We have Angular application (version 6.1.5), which makes HTTP request to the Restfull API.
We have used modular approach in Angular App. There is app level routing configurations and each modules have their own routing configuration.
This set up is perfectly fine and running without any hassles.
Now as per our new requirement, we need to use this Angular application withing VueJS application.
After our initial research, we used Angular Elements and created angular build. We used this build (containing JS and CSS file) withing the VueJS, we thought it worked fine, until we hit refresh on VueJS application.
Once we hit refresh, the Angular application routes are not working and we only see blank screen.
So what we would like to know is, whether our approach of using angular element is right one. Or are there any better approaches to use angular application within VueJS application.
Thanks for your help.