I'm new to ui-router and can't get layout.directory.teams
or layout.directory.people
to load their respective templates. I expect those templates to be loaded in the ui-view
on the layout
state's template.
/dashboard
works fine...the dashboard.html
template is loaded in the ui-view
in content.html
template.
/directory/teams
doesn't load the teams.html
template.
/directory/people
doesn't load the people.html
template.
.state('layout', {
abstract: true,
templateUrl: "components/common/content.html"
})
.state('layout.dashboard', {
url: "/dashboard",
controller: 'DashboardCtrl',
controllerAs: 'dashboard',
templateUrl: "app/features/dashboard/views/dashboard.html",
})
.state('layout.directory', {
abstract: true,
url: "/directory"
})
.state('layout.directory.teams', {
url: "/teams",
controller: 'DirectoryCtrl',
controllerAs: 'directory',
templateUrl: "app/features/directory/views/teams.html",
})
.state('layout.directory.people', {
url: "/people",
controller: 'DirectoryCtrl',
controllerAs: 'directory',
templateUrl: "app/features/directory/views/people.html",
})
template: "<div ui-view></div>"
tolayout.directory
state. A child state renders in the template of its parent... so, the parent must haveui-view
- New Dev