2016-02-26 18:21:31 +02:00
|
|
|
// #docregion
|
2016-05-03 14:06:32 +02:00
|
|
|
import { Component } from '@angular/core';
|
2016-05-11 16:28:58 +03:00
|
|
|
import { RouteConfig, ROUTER_DIRECTIVES } from '@angular/router-deprecated';
|
2016-05-28 17:17:21 +03:00
|
|
|
import { PhoneListComponent } from './phone-list/phone-list.component';
|
|
|
|
import { PhoneDetailComponent } from './phone-detail/phone-detail.component';
|
2016-02-26 18:21:31 +02:00
|
|
|
|
|
|
|
@RouteConfig([
|
2016-06-08 01:06:25 +02:00
|
|
|
{path: '/phones', name: 'Phones', component: PhoneListComponent},
|
|
|
|
{path: '/phones/:phoneId', name: 'Phone', component: PhoneDetailComponent},
|
|
|
|
{path: '/', redirectTo: ['Phones']}
|
2016-02-26 18:21:31 +02:00
|
|
|
])
|
|
|
|
@Component({
|
2016-05-28 17:17:21 +03:00
|
|
|
selector: 'phonecat-app',
|
2016-02-26 18:21:31 +02:00
|
|
|
template: '<router-outlet></router-outlet>',
|
|
|
|
directives: [ROUTER_DIRECTIVES]
|
|
|
|
})
|
2016-05-28 17:17:21 +03:00
|
|
|
export class AppComponent {
|
2016-02-26 18:21:31 +02:00
|
|
|
}
|