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

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

reflection - How to access the object-members of an object declaration in kotlin -

php - Doctrine Query Builder Error on Join: [Syntax Error] line 0, col 87: Error: Expected Literal, got 'JOIN' -