Nested Directive Within Ng-view Doesn't Work Angularjs
I developing a SPA using the native directive from angular ng-view to change views, the problem is that One of those views there is a custom directive I've wrote and when the route
Solution 1:
You misspelled markup for directive in your template
. For directive named formNewSector
it should be <form-new-sector>
, not <formNewSector>
.
Post a Comment for "Nested Directive Within Ng-view Doesn't Work Angularjs"