diff --git a/core/src/components/menu/menu.tsx b/core/src/components/menu/menu.tsx index 7048196b62..a1781d7a9e 100644 --- a/core/src/components/menu/menu.tsx +++ b/core/src/components/menu/menu.tsx @@ -120,7 +120,7 @@ export class Menu { async componentWillLoad() { if (this.type == null) { - this.type = this.mode === 'ios' ? 'reveal' : 'overlay'; + this.type = this.config.get('menuType', this.mode === 'ios' ? 'reveal' : 'overlay'); } if (this.isServer) { this.disabled = true;