I am new to angular 5, I have created an service for data
service.ts:
import { Injectable } from '@angular/core';
import { prmDataField } from '../_models/index'
@Injectable()
export class prmService {
prmDataFields = [
new prmDataField('Training & Recruitment', 'expenses', 'billNo', 'totalAmt')];
}
component.ts:
import { prmService } from '../data.service';
constructor(private prmDataLabel: prmService) {}
compontent.html
There are textbox under this head which are in service.ts, I want to load prmDataFields data to this textbox onload of page.
