SHARE
TWEET
Untitled
a guest
Oct 17th, 2016
56
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- $stateProvider
- .state('dashboard', {
- url: '/',
- template: '<div><h3> some title </h3><ui-view></ui-view></div>',
- controller: 'SomeController',
- controllerAs: 'vm',
- resolve: {
- user: ['UserService', function (UserService) {
- return UserService.GetCurrent();
- }]
- }
- })
- .state('dashboard.home', {
- url: 'home',
- templateUrl: 'templates/home.html'
- })
- .state('dashboard.profile', {
- url: 'profile',
- templateUrl: 'templates/profile.html',
- controller: 'ProfileController',
- controllerAs: 'vm'
- })
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy.
