ionic3 自定义侧边栏

2018-04-10  本文已影响0人  Kathy丶Andy
  1. 使用Ionic创建组件快捷命令

     ionic g component menu 
    

文件目录结构


image.png image.png

在app.module.ts里面导入这个组件

import { ComponentsModule } from '../components/components.module';

在menu.html里面使用ion-menu标签

 <ion-menu [content]="myContent">

 </ion-menu>

在menu.ts里面定义myContent

 @Input() myContent: any;

在tabs.html里面接收刚才定义的那个myContent

image.png

这样就完成了自定义侧边栏,不用在写在app.html里面了

上一篇下一篇

猜你喜欢

热点阅读