Ionic 4 simple tab in blank project
问题 I have create a new project with ionic start myApp blank Now i need to add tab in to the project i have create folder tabs in pages and create two file inside tabs tabs.html tabs.ts in tabs.html <ion-tabs> <ion-tab [root]="homePage" tabTitle="Home" tabIcon="bulb" ></ion-tab> <ion-tab [root]="reclamationsPage" tabTitle="Reclamations" tabIcon="settings"></ion-tab> </ion-tabs> in tabs.ts import { Component } from '@angular/core'; import { ReclamationsPage } from '../reclamations/reclamations';