# Sidebar ### Install ```js import { createApp } from 'vue'; import { Sidebar, SidebarItem } from 'vant'; const app = createApp(); app.use(Sidebar); app.use(SidebarItem); ``` ## Usage ### Basic Usage ```html ``` ```js export default { data() { return { activeKey: 0, }; }, }; ``` ### Show Badge ```html ``` ### Disabled ```html ``` ### Change Event ```html ``` ```js import { Notify } from 'vant'; export default { data() { return { activeKey: 0, }; }, methods: { onChange(index) { Notify({ type: 'primary', message: index }); }, }, }; ``` ## API ### Sidebar Props | Attribute | Description | Type | Default | | --------- | -------------------- | ------------------ | ------- | | v-model | Index of chosen item | _number \| string_ | `0` | ### Sidebar Events | Event | Description | Arguments | | ------ | --------------------------- | ---------------------------- | | change | Triggered when item changed | index: index of current item | ### SidebarItem Props | Attribute | Description | Type | Default | | --- | --- | --- | --- | | title | Content | _string_ | `''` | | dot | Whether to show red dot | _boolean_ | `false` | | badge `v2.5.6` | Content of the badge | _number \| string_ | `''` | | disabled | Whether to be disabled | _boolean_ | `false` | | url | Link | _string_ | - | | to | Target route of the link, same as to of vue-router | _string \| object_ | - | | replace | If true, the navigation will not leave a history record | _boolean_ | `false` | ### SidebarItem Events | Event | Description | Arguments | | ----- | ------------------------- | ---------------------------- | | click | Triggered when click item | index: index of current item | ### SidebarItem Slots | Name | Description | | --------------- | ----------------- | | title `v2.10.8` | Custom item title |