我在这里有一个傻瓜https://plnkr.co/edit/dAheUrJbJis6LnTe4BXo?p=preview
超级简单,我正在尝试创建一个基本的Angular 2设置/ bolierplate
任何人都可以说明为什么这不起作用。
import { NgModule } from "@angular/core";
import { BrowserModule } from "@angular/platform-browser";
import { EventsAppComponent } from "event-app.component";
@NgModule({
imports:[
BrowserModule
],
declarations:[
EventsAppComponent,
],
providers:[
],
bootstrap:[
EventsAppComponent
]
})
export class AppModule{
}
答案 0 :(得分:3)
固定弹药:https://plnkr.co/edit/AwrEzqlyz7OPhK5onfKP?p=preview
•let world = "world";
应为world = "world";
•template:<h1>Hello {{ world }}</h1>
应为template:'<h1>Hello {{ world }}</h1>'
•event-app.component
应位于src
文件夹中。