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 -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -