html5 - Template Parse Errors -
i have imported required modules , still facing error.
template parse errors: can't bind 'ngmodel' since isn't known property of 'md-select'. 1. if 'md-select' angular component , has 'ngmodel' input, verify part of module. 2. if 'md-select' web component add 'custom_elements_schema' '@ngmodule.schemas' of component suppress message. 3. allow property add 'no_errors_schema' '@ngmodule.schemas' of component.
check if have included browsermodule,materialmodule,formsmodule
import {formsmodule} '@angular/forms'; @ngmodule({ imports: [ browsermodule, materialmodule.forroot(), formsmodule ], declarations: [appcomponent], entrycomponents: [appcomponent], })
Comments
Post a Comment