angular2:组件(Component)、模板(Template)和元数据(MetaData)
先看一个简单的组件://hello.component.tsimport{Component}from'@angular/core';@Component({selector:'say-hello',templateUrl:'./hello.component.html',styleUrls:['./hello.component.css']})exportclassHelloComponent{