NagRock/ngx-auto-scroll

Uncaught Error: Unexpected directive

VitaliyKovtun opened this issue · 3 comments

Hey, guys. What am I doing wrong?
Uncaught Error: Unexpected directive 'Angular2AutoScroll' imported by the module 'AppModule'
I do
import { Angular2AutoScroll } from 'angular2-auto-scroll/lib/angular2-auto-scroll.directive';
to app.module.ts
and
Angular2AutoScroll
to
imports: [
IonicModule.forRoot(MyApp),
Angular2AutoScroll
]

@VitaliyKovtun Since Angular2AutoScroll is not a module but a directive you should add it to declarations list, not the imports list.

As @netopolit said you should add it to declaration list in your module.

Closing