I\'m trying to use angular2-mdl with angular-cli. I imported MdlModule in app.module.ts.
When I try to use
I had that same issue. it was causing because i was using
"ng2-bootstrap": "^1.3.1",
"@angular/common": "2.0.1",
"@angular/compiler": "2.0.1",
"@angular/core": "2.0.1",
"@angular/platform-browser": "2.0.1",
Then I updated angular dependencies to
"@angular/common": "2.2.3",
"@angular/compiler": "2.2.3",
"@angular/core": "2.2.3",
"@angular/platform-browser": "2.2.3",
it worked fine.