Angular 6 Component类分割文件

时间:2018-06-13 08:41:25

标签: angular components

如何将一个组件类拆分为多个文件?

想象一下这个组件:

//main.ts
@Component({
  selector: "sg-page-main",
  templateUrl: "main.html",
})

export class MainPageComponent {
 public b : number = 41;

  public aff(): void {console.log(this.b)}
  public increment(): void {this.b=this.b+1}
}

我想把功能"增加"到另一个文件。 在我的项目中,我在组件中有50多个功能,它们都使用"这个"范围。

0 个答案:

没有答案