Skip to content

Instantly share code, notes, and snippets.

@Vayvala
Created January 28, 2016 19:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Vayvala/af26aa976e38028d8e2a to your computer and use it in GitHub Desktop.
Save Vayvala/af26aa976e38028d8e2a to your computer and use it in GitHub Desktop.
$stateProvider
.state('book', {
abstract: true,
url: '/:book',
template: '<book-tabs />'
})
.state('book.about', {
url: '',
template: '<book-about />'
})
.state('book.stats', {
url: '/statistics',
template: '<book-stats />'
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment