Angular Elements - pass a complicated input to my web component
问题 I started lately to play a little bit with angular elements that was released in angular V6, I opened a small sandbox project for that purpose. https://github.com/Slash7GNR/ndv-angular-elements Now I've tried to add a more complicated input to my web component - I've tried to add an array input as follows: in app.component.ts I've added: @Input() welcomeMessages: string[]; and in the template I've added: <div *ngFor="let message of welcomeMessages; let index = index"> {{index}} - {{message}}