/*! For license information please see 9949.e7bb9fad.js.LICENSE.txt */ (self.webpackChunk=self.webpackChunk||[]).push([["9949"],{60055:function(s,n,a){"use strict";a.r(n);var t=a("80681");let e=["innerHTML"];n.default={setup:()=>({html:""}),render:()=>((0,t.wg)(),(0,t.iD)("div",{class:"van-doc-markdown-body",innerHTML:'

Sidebar

\n

Intro

\n

The vertically displayed navigation bar is used to switch between different content areas.

\n

Install

\n

Register component globally via app.use, refer to Component Registration for more registration ways.

\n
import { createApp } from 'vue';\nimport { Sidebar, SidebarItem } from 'vant';\n\nconst app = createApp();\napp.use(Sidebar);\napp.use(SidebarItem);\n
\n

Usage

\n

Basic Usage

\n
<van-sidebar v-model="active">\n  <van-sidebar-item title="Title" />\n  <van-sidebar-item title="Title" />\n  <van-sidebar-item title="Title" />\n</van-sidebar>\n
\n
import { ref } from 'vue';\n\nexport default {\n  setup() {\n    const active = ref(0);\n    return { active };\n  },\n};\n
\n

Show Badge

\n
<van-sidebar v-model="active">\n  <van-sidebar-item title="Title" dot />\n  <van-sidebar-item title="Title" badge="5" />\n  <van-sidebar-item title="Title" />\n</van-sidebar>\n
\n

Disabled

\n
<van-sidebar v-model="active">\n  <van-sidebar-item title="Title" />\n  <van-sidebar-item title="Title" disabled />\n  <van-sidebar-item title="Title" />\n</van-sidebar>\n
\n

Change Event

\n
<van-sidebar v-model="active" @change="onChange">\n  <van-sidebar-item title="Title 1" />\n  <van-sidebar-item title="Title 2" />\n  <van-sidebar-item title="Title 3" />\n</van-sidebar>\n
\n
import { ref } from 'vue';\nimport { showToast } from 'vant';\n\nexport default {\n  setup() {\n    const active = ref(0);\n    const onChange = (index) => showToast(`Title ${index + 1}`);\n    return {\n      active,\n      onChange,\n    };\n  },\n};\n
\n

API

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AttributeDescriptionTypeDefault
v-modelIndex of chosen itemnumber | string0
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
EventDescriptionArguments
changeEmitted when chosen item changedindex: number
\n

SidebarItem Props

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AttributeDescriptionTypeDefault
titleContentstring\'\'
dotWhether to show red dotbooleanfalse
badgeContent of the badgenumber | string\'\'
badge-propsProps of Badge, see Badge - propsBadgeProps-
disabledWhether to be disabledbooleanfalse
urlLinkstring-
toThe target route should navigate to when clicked on, same as the to prop of Vue Routerstring | object-
replaceIf true, the navigation will not leave a history recordbooleanfalse
\n

SidebarItem Events

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
EventDescriptionArguments
clickEmitted when an item is clickedindex: number
\n

SidebarItem Slots

\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription
titleCustom item title
\n

Types

\n

The component exports the following type definitions:

\n
import type { SidebarProps, SidebarItemProps } from 'vant';\n
\n

Theming

\n

CSS Variables

\n

The component provides the following CSS variables, which can be used to customize styles. Please refer to ConfigProvider component.

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDefault ValueDescription
--van-sidebar-width80px-
--van-sidebar-font-sizevar(--van-font-size-md)-
--van-sidebar-line-heightvar(--van-line-height-md)-
--van-sidebar-text-colorvar(--van-text-color)-
--van-sidebar-disabled-text-colorvar(--van-text-color-3)-
--van-sidebar-padding20px var(--van-padding-sm)-
--van-sidebar-active-colorvar(--van-active-color)-
--van-sidebar-backgroundvar(--van-background)-
--van-sidebar-selected-font-weightvar(--van-font-bold)-
--van-sidebar-selected-text-colorvar(--van-text-color)-
--van-sidebar-selected-border-width4px-
--van-sidebar-selected-border-height16px-
--van-sidebar-selected-border-colorvar(--van-primary-color)-
--van-sidebar-selected-backgroundvar(--van-background-2)-
\n
'},null,8,e))}}}]);