@Component({
selector: 'md-chip-list',
template: `<div [class]="focused">
<md-chip *ngFor="let tag of list" class="md-primary">{{tag}}</md-chip>
<input class="md-input"
(focus)="onFocus()"
(focusout)="focusOutFunction()"
(keyup.enter)="keyPress(box.value)"
#box>
</div>`,
I getting error :Can't bind to 'ngForOf' since it isn't a known property of 'md-chip'
I know that usually angular should feel comfortable with *ngFor, my suspections "npm run demo-app" somehow removes the asterix...
Hope someone here will have some time for my question
Thanks Guys