Answers for "ng0303: can't bind to 'ngif' since it isn't a known property of"

0

core.js:7813 Can't bind to 'ngIf' since it isn't a known property of 'div'

import { CommonModule } from '@angular/common';  
import { BrowserModule } from '@angular/platform-browser';
Posted by: Guest on February-04-2021
0

NG0303: Can't bind to 'ngIf' since it isn't a known property of 'form'.

// If you are using RC5 then import this:

import { CommonModule } from '@angular/common';  
import { BrowserModule } from '@angular/platform-browser';

// and be sure to import CommonModule from the module that is providing your component.

 @NgModule({
    imports: [CommonModule],
    declarations: [MyComponent]
  ...
})
class MyComponentModule {}
Posted by: Guest on March-23-2021

Code answers related to "ng0303: can't bind to 'ngif' since it isn't a known property of"

Code answers related to "Javascript"

Browse Popular Code Answers by Language