It is possible, but it requires a little bit coding by hand. You need to bootstrap the angular apps on your own. Don’t worry, it is not that complicated
- Do not add
ng-app
attributes in your HTML - Make sure you can fetch the DOM elements holding the app
- When DOM is loaded you need to start the apps on your own:
angular.bootstrap( domElement, ['AppName']);
Fork of you plunker which works: http://plnkr.co/edit/c5zWOMoah2jHYhR5Cktp