Nested child state with ui-router
问题 As I'm working on an Angular app, I was wondering about ui-route nested states. As said in the docu, it's possible to create nested state such as (taken from the doc) : $stateProvider .state('contacts', { templateUrl: 'contacts.html', controller: function($scope){ $scope.contacts = [{ name: 'Alice' }, { name: 'Bob' }]; } }) .state('contacts.list', { templateUrl: 'contacts.list.html' }); But is it possible to create a granchild state ? (possibly by adding something like) : .state('contacts