// 新增模块ionic g page tab4//删除app-routing.module.ts中自动配的tab4的路由//tabs-routing.module.ts中新增路由{path: 'tab4',children: [{path: '',loadChildren: () =>import('../tab4/tab4.module').then(m => m.Tab4PageModule)}]}//tabs.page.html中配置//++ 新添加导航<ion-tab-button tab="tab4"><ion-icon name="logo-octocat"></ion-icon><ion-label>Tab Four</ion-label></ion-tab-button>
