Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
mo.tabs
mo.ui.tabs
tab1 = mo.vstack([mo.ui.slider(1, 10), mo.ui.text(), mo.ui.date()]) tab2 = mo.vstack( [ { "slider": mo.ui.slider(1, 10), "text": mo.ui.text(), "date": mo.ui.date(), } ] ) tabs = mo.tabs({"Tab 1": tab1, "Tab 2": tab2})
mo.tabs( tabs: dict[str, object] ) -> Html
Html
# Old (deprecated) mo.tabs({"Tab 1": content1, "Tab 2": content2}) # New mo.ui.tabs({"Tab 1": content1, "Tab 2": content2})