我在一个组件中定义了一种方法。我想在另一个组件中使用该方法。基本上是Export
和Import
,但我不知道该如何使用方法。
abc.component.ts
import { Component, OnInit } from '@angular/core';
export class ABCComponent {
getUser(){
//Some code
}
}
def.component.ts
import { Component, OnInit } from '@angular/core';
import { ABCComponent } from '../../abc.component.ts';
export class DEFComponent implements OnInit {
ngOnit(){
//I want to use getUser method here from abc.component.ts
}
}