The VOnsSplitter
component is used to display a menu next to the main content. It can be configured to either display in column layout or as a swipeable menu.
It is also possible to automatically switch between column layout and a layout with a swipeable menu based on the screen size or any arbitrary condition. In some situations it can be useful to display a column layout on large devices and hide the menu on smaller screens.
The menu is defined using the VOnsSplitterSide
component. This component can either be displayed as a column next to the main content or as a swipeable menu. This behavior is controlled by using the collapse
prop.
To enable opening and closing the menu by swiping, the swipable
prop must be defined. The side
prop is used to specify on which side of the screen the menu is displayed.
The open
prop allows to assign a boolean variable to the menu in order to open or close it. This only works when the menu is collapsed, since in column layout it is always visible. An update:open
event is fired whenever the user interacts with the menu and allows to synchronize the open
prop (v-model:open
can be used as a shortcut):
<v-ons-splitter-side v-model:open="isOpen">
In order to open or close the menu from a button, we must pass a method that modifies open
prop down to the right place.
The main content of the screen is located inside the VOnsSplitterContent
component. A VOnsPage
component should always be the child of this component.
<v-ons-splitter>
<v-ons-splitter-content>
<v-ons-page>
Main content
</v-ons-page>
</v-ons-splitter-content
</v-ons-splitter>
In order to change its content, we can simply switch its children with Vue is
prop or any other way. This also works for VOnsSplitterSide
component.
If you want to show core transition animations between pages or need a more complex routing, consider nesting VOnsNavigator
inside VOnsSplitterContent
.
名前 | 概要 |
---|---|
deviceBackButton |
Fired on device back button. Default behavior is closing all the open VOnsSplitterSide components. Otherwise, calls parent handler.
(翻訳中)
|
Fired on device back button. Default behavior is closing all the open VOnsSplitterSide
components. Otherwise, calls parent handler.
(翻訳中)
名前 | 型 | 概要 |
---|---|---|
event | Object | Event object. (翻訳中) |
event.preventDefault | Function | Avoids the default behavior. (翻訳中) |
event.callParentHandler | Function | Runs the handler for the immediate parent that supports device back button. (翻訳中) |
Onsen UIに関する質問は、Stack Overflowにてonsen-uiタグを付与してください。Onsen UIチームはあなたの問題解決をお手伝いします。
バグ報告や機能要望については、GitHub Issuesに記載をお願いいたします。
あわせて、下記の情報も参考にしてください。