你可以使用unpkg.com:
原文链接:https://www.f2er.com/angularjs/142185.htmlhttps://unpkg.com/@angular/core@4.0.1/bundles/core.umd.js
https://unpkg.com/@angular/platform-browser-dynamic@4.0.1/bundles/platform-browser-dynamic.umd.js
等等.
let { Component,NgModule } = ng.core; @Component({ selector: 'my-app',template: ` <h1>Hello,{{ name }}</h1> <button (click)="increment()">Click {{ counter }}</button> `,}) class HomeComponent { counter = 0; name = 'Angular 2' increment() { this.counter++; } } const { BrowserModule } = ng.platformBrowser; @NgModule({ imports: [ BrowserModule ],declarations: [ HomeComponent ],bootstrap: [ HomeComponent ] }) class AppModule { }
如果您不想使用打字稿,那么这里就是