forked from PatrickJS/PatrickJS-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.component.ts
57 lines (51 loc) · 1.47 KB
/
app.component.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/*
* Angular 2 decorators and services
*/
import {Component} from 'angular2/core';
import {RouteConfig, Router, ROUTER_DIRECTIVES} from 'angular2/router';
import {FORM_PROVIDERS} from 'angular2/common';
import {HomeCmp} from './home/home.component';
/*
* App Component
* Top Level Component
*/
@Component({
selector: 'app',
providers: [ ...FORM_PROVIDERS ],
directives: [ ...ROUTER_DIRECTIVES ],
pipes: [],
styles: [],
template: `
<header>
<nav>
<h1>Hello {{ name }}</h1>
<a [routerLink]=" ['Index'] ">Index</a>
<a [routerLink]=" ['Home'] ">Home</a>
</nav>
</header>
<main>
<router-outlet></router-outlet>
</main>
<footer>
WebPack Angular 2 Starter by <a [href]="url">@AngularClass</a>
</footer>
`
})
@RouteConfig([
{ path: '/', component: HomeCmp, name: 'Index' },
{ path: '/home', component: HomeCmp, name: 'Home' }
])
export class AppCmp {
name = 'Angular 2 Webpack Starter';
url = 'https://twitter.com/AngularClass';
constructor() {
}
}
/*
* Please review the https://github.com/AngularClass/angular2-examples/ repo for
* more angular app examples that you may copy/paste
* (The examples may not be updated as quickly. Please open an issue on github for us to update it)
* For help or questions please contact us at @AngularClass on twitter
* or our chat on Slack at https://AngularClass.com/slack-join
* or via chat on Gitter at https://gitter.im/AngularClass/angular2-webpack-starter
*/