Nested directive within ngView does not work Angular JS
问题 I'm having exact problem as this stackoverflow question. Nested directive does not work with ngview and routeconfig. But my problem is not related to syntax. I have defined modules as below: angular.module('hiDashboard', []); angular.module('hiFramework', ['hiDashboard']); angular.module('app', ['hiFramework']); Config code: angular.module('app').config(function ($routeProvider) { var routes = [ { url: '/dashboard', config: { template: '<wwa-dashboard></wwa-dashboard>' } }, { url: '/friends',