I am trying to find out if there is a way to add a piece of Angular in a project built on different framework..
To be more specific, I have a .NET MVC project (Razor for the markup) from which I want to make some ajax calls and update bits of the UI. I rejected JQuery so far since I want to use a more modern approach(I am considering vanilla or vue because of the easy learning curve).
I thought the solution would be given by Angular Elements so I could have something like:
<my-popup message="Use Angular!"></my-popup>
but it doesn't seem to work like that.
Again, my point is to use Angular in a non-Angular project.
Any suggestion would be welcome.