Я создал компонент под названием Wizard, который имеет два свойства: Разделы и шаги
вот отрывок из компонента
import { Component, Input, OnInit } from '@angular/core';
import { Section } from './models/section';
import { Step } from './models/step';
@
Component({
styleUrls: ['wizard.component.css'],
selector: 'sym-wizard',
templateUrl: './wizard.component.html'
})
export class WizardComponent implements OnInit {
@Input() sections: Section[];
@Input() steps: Step[];
currentStep: Step;
constructor() {
}
}
Как я могу заполнить свойства из вид HTML, чтобы следующие элементы заполняли свойства раздела и шагов?
<sym-wizard>
<sections>
<section name="name1"></section>
<section name="name2"></section>
<section name="name3"></section>
</sections>
<steps>
<step name="step1" section="name1">
</step>
<step name="step2" section="name1"></step>
<step name="step3" section="name2"></step>
</steps>
</sym-wizard>