@alfredfrancis wrote:
I'm using Ionic 3 I installed ionic2 auto complete component
npm install ionic2-auto-complete --saveadded following refferences in app.module.ts
import { AutoCompleteModule } from 'ionic2-auto-complete'; @NgModule({ declarations: [ MyApp, HomePage, TabsPage, MyItem ], imports: [ BrowserModule, AutoCompleteModule, FormsModule, HttpModule, IonicModule.forRoot(MyApp) ], ... ... }) export class AppModule {}I added following component in app.html and its displaying fine.
<ion-auto-complete></ion-auto-complete>but when im trying to add it in any other page its not rendering. No error is thrown. What could be the possible issue ?
Posts: 3
Participants: 2