First angular 2 app

本文毫无意义,仅作记录而已,无需查看。

目录结构
angular2-quickstart
-app
--app.component.ts
--boot.ts
-index.html
-license.md

// app.component.ts
import {Component} from 'angular2/core';

@Component({
    selector: 'my-app',
    template: '

My First Angular 2 App

' }) export class AppComponent { } // app.boot.ts import {bootstrap} from 'angular2/platform/browser' import {AppComponent} from './app.component' bootstrap(AppComponent);
// index.html


    Angular 2 QuickStart
    
    
    
    
    
    
    
  
  
  
    Loading...
  

你可能感兴趣的:(angular.js,javascript)