var app = ng.core.Component({
selector:'myapp',
template:'<h1>helloworld</h1>'
}).
Class(
{
constructor:function()
}
);
答案 0 :(得分:1)
根据angular2快速入门指南:
Class方法是我们实现组件本身的地方,为它提供绑定到视图的属性和方法,以及适用于此部分UI的任何行为。
参考:https://angular.io/docs/js/latest/quickstart.html#!#add-the-component-file