Let's say I have a component Field
and have in a Main
component I have an instance of Field
like:
export class MainComponent {
public field = new Field("my field value ");
...
How can I display that field in this component's html ?
Let's say I have a component Field
and have in a Main
component I have an instance of Field
like:
export class MainComponent {
public field = new Field("my field value ");
...
How can I display that field in this component's html ?