[ionic 4 beta] menuClose

v3 had a directive: menuClose. This allowed any navigation buttons inside a menu to automatically close the menu after they’re clicked.

does v4 have something similar?

1 Like

Yes, you can wrap a component with this:

<ion-menu-toggle auto-hide="false">
    ....
</ion-menu-toggle>

I found adding menuClose directive easier though.

1 Like