<md-select #foo><md-select>
<div *ngIf="foo.selected != null">...</div>
Error: "Cannot read property 'selected' of undefined" because in Material's source code, _selectionModel
is undefined
until ngAfterContentInit
:
get selected(): MdOption | MdOption[] {
return this.multiple ? this._selectionModel.selected : this._selectionModel.selected[0];
}