Version: v7On this pageion-menushadowMenuコンポーネントは、現在のビューの横からスライドするナビゲーションパネルです。 デフォルトでは左からスライドしますが、サイドはオーバーライドできます。 Menuの表示はmodeによって異なりますが、表示するtypeはmenuのtypeによって変更することができます。 menu要素は、root content要素と同じ深度である必要があります。 コンテンツにつけるMenuの数に制限はありません。 これらはテンプレートから、またはプログラムでMenuControllerを使用して制御できます。基本的な使い方AngularJavaScriptReactVueiOSMDMenu Toggleion-menu-toggle コンポーネントを使用して、メニューを開いたり閉じたりするカスタムボタンを作成することができます。AngularJavaScriptReactVueiOSMDMenu Typestypeプロパティは、アプリケーションでのメニューの表示方法をカスタマイズするために使用することができます。AngularJavaScriptReactVueiOSMDテーマCSS Shadow PartsAngularJavaScriptReactVueiOSMDInterfacesMenuCustomEvent必須ではありませんが、このコンポーネントから発行される Ionic イベントでより強く型付けを行うために、CustomEvent インターフェースの代わりにこのインターフェースを使用することが可能です。interface MenuCustomEvent<T = any> extends CustomEvent { detail: T; target: HTMLIonMenuElement;}プロパティcontentIdDescriptionThe id of the main content. When using a router this is typically ion-router-outlet. When not using a router, this is typically your main view's ion-content. This is not the id of the ion-content inside of your ion-menu.Attributecontent-idTypestring | undefinedDefaultundefineddisabledDescriptiontrueの場合、メニューは無効化される。AttributedisabledTypebooleanDefaultfalsemaxEdgeStartDescriptionThe edge threshold for dragging the menu open. If a drag/swipe happens over this value, the menu is not triggered.Attributemax-edge-startTypenumberDefault50menuIdDescriptionメニューのIDです。Attributemenu-idTypestring | undefinedDefaultundefinedsideDescriptionメニューがビューのどの側に配置されるべきか。AttributesideType"end" | "start"Default'start'swipeGestureDescriptiontrueの場合、スワイプによるメニュー操作が有効になる。Attributeswipe-gestureTypebooleanDefaulttruetypeDescriptionThe display type of the menu. Available options: "overlay", "reveal", "push".AttributetypeTypestring | undefinedDefaultundefinedイベントNameDescriptionionDidCloseメニューが閉じられたときに発します。ionDidOpenメニューが開いているときに発行されます。ionWillCloseメニューが閉じられようとするときに発します。ionWillOpenメニューが開かれようとするときに発します。メソッドcloseDescriptionCloses the menu. If the menu is already closed or it can't be closed, it returns false.Signatureclose(animated?: boolean) => Promise<boolean>isActiveDescriptionReturns true is the menu is active.A menu is active when it can be opened or closed, meaning it's enabled and it's not part of a ion-split-pane.SignatureisActive() => Promise<boolean>isOpenDescriptionメニューが開いている場合は true を返します。SignatureisOpen() => Promise<boolean>openDescriptionOpens the menu. If the menu is already open or it can't be opened, it returns false.Signatureopen(animated?: boolean) => Promise<boolean>setOpenDescriptionOpens or closes the button. If the operation can't be completed successfully, it returns false.SignaturesetOpen(shouldOpen: boolean, animated?: boolean) => Promise<boolean>toggleDescriptionToggles the menu. If the menu is already open, it will try to close, otherwise it will try to open it. If the operation can't be completed successfully, it returns false.Signaturetoggle(animated?: boolean) => Promise<boolean>CSS Shadow PartsNameDescriptionbackdropメニューを開いているときに、メインコンテンツの上に表示される背景です。containerメニューの内容を格納するコンテナです。CSSカスタムプロパティNameDescription--backgroundメニューの背景--heightメニューの高さ--max-heightメニューの最大の高さ--max-widthメニューの最大幅--min-heightメニューの高さの最小値--min-widthメニューの最小幅--widthメニューの幅SlotsNo slots available for this component.