33 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
 | |
|     if (typeof Reflect === "object" && typeof Reflect.decorate === "function") return Reflect.decorate(decorators, target, key, desc);
 | |
|     switch (arguments.length) {
 | |
|         case 2: return decorators.reduceRight(function(o, d) { return (d && d(o)) || o; }, target);
 | |
|         case 3: return decorators.reduceRight(function(o, d) { return (d && d(target, key)), void 0; }, void 0);
 | |
|         case 4: return decorators.reduceRight(function(o, d) { return (d && d(target, key, o)) || o; }, desc);
 | |
|     }
 | |
| };
 | |
| var __metadata = (this && this.__metadata) || function (k, v) {
 | |
|     if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
 | |
| };
 | |
| // #docregion
 | |
| // #docregion import
 | |
| var angular2_1 = require('angular2/angular2');
 | |
| // #enddocregion
 | |
| var AppComponent = (function () {
 | |
|     function AppComponent() {
 | |
|     }
 | |
|     AppComponent = __decorate([
 | |
|         angular2_1.Component({
 | |
|             selector: 'my-app'
 | |
|         }),
 | |
|         angular2_1.View({
 | |
|             template: '<h1 id="output">My first Angular 2 App</h1>'
 | |
|         }), 
 | |
|         __metadata('design:paramtypes', [])
 | |
|     ], AppComponent);
 | |
|     return AppComponent;
 | |
| })();
 | |
| // #docregion bootstrap
 | |
| angular2_1.bootstrap(AppComponent);
 | |
| // #enddocregion
 | |
| //# sourceMappingURL=main.js.map
 |