Tag: angular
-
Javascript frameworks 2020
Java script is one of the most essential object orient programming language designed to make web development. It makes things easier, more engaging, responsive, interactive, which helps in enhancing user experience. With the advancement of technology, a various JavaScript framework has also emerged in the market. It is a tool that makes working with Java […]
-
Angular error: can’t bind to ‘ngmodel’ since it isn’t a known property of ‘input’
This usually happens because App has not registered FormsModule to be used. So just go into your main app.module.ts and add: import { FormsModule } from ‘@angular/forms’; and add the same to imports as well: imports: [ BrowserModule, AppRoutingModule, FormsModule ],