本文毫无意义,仅作记录而已,无需查看。
目录结构
angular2-quickstart-app--app.component.ts--boot.ts-index.html-license.md// app.component.tsimport {Component} from 'angular2/core';@Component({ selector: 'my-app', template: 'My First Angular 2 App
'})export class AppComponent { }// app.boot.tsimport {bootstrap} from 'angular2/platform/browser'import {AppComponent} from './app.component'bootstrap(AppComponent);
// index.htmlAngular 2 QuickStart Loading...