| 
									
										
										
										
											2016-05-03 14:06:32 +02:00
										 |  |  | import { Component } from '@angular/core'; | 
					
						
							| 
									
										
										
										
											2015-10-23 19:05:17 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | @Component({ | 
					
						
							|  |  |  |   selector: 'my-app-ctor', | 
					
						
							|  |  |  |   template: `
 | 
					
						
							|  |  |  |     <h1>{{title}} [Ctor version]</h1> | 
					
						
							|  |  |  |     <h2>My favorite hero is: {{myHero}}</h2> | 
					
						
							|  |  |  |     `
 | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | // #docregion app-ctor
 | 
					
						
							|  |  |  | export class AppCtorComponent { | 
					
						
							|  |  |  |   title: string; | 
					
						
							|  |  |  |   myHero: string; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   constructor() { | 
					
						
							|  |  |  |     this.title = 'Tour of Heroes'; | 
					
						
							|  |  |  |     this.myHero = 'Windstorm'; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | // #enddocregion app-ctor
 |