mirror of
https://github.com/youzan/vant.git
synced 2025-12-25 02:02:01 +08:00
Sidebar
Install
Register component globally via app.use, refer to Component Registration for more registration ways。
import { createApp } from 'vue';
import { Sidebar, SidebarItem } from 'vant';
const app = createApp();
app.use(Sidebar);
app.use(SidebarItem);
Usage
Basic Usage
<van-sidebar v-model="active">
<van-sidebar-item title="Title" />
<van-sidebar-item title="Title" />
<van-sidebar-item title="Title" />
</van-sidebar>
import { ref } from 'vue';
export default {
setup() {
const active = ref(0);
return { active };
},
};
Show Badge
<van-sidebar v-model="active">
<van-sidebar-item title="Title" dot />
<van-sidebar-item title="Title" badge="5" />
<van-sidebar-item title="Title" badge="20" />
</van-sidebar>
Disabled
<van-sidebar v-model="active">
<van-sidebar-item title="Title" />
<van-sidebar-item title="Title" disabled />
<van-sidebar-item title="Title" />
</van-sidebar>
Change Event
<van-sidebar v-model="active" @change="onChange">
<van-sidebar-item title="Title 1" />
<van-sidebar-item title="Title 2" />
<van-sidebar-item title="Title 3" />
</van-sidebar>
import { ref } from 'vue';
import { Toast } from 'vant';
export default {
setup() {
const active = ref(0);
const onChange = (index) => Toast(`Title ${index + 1}`);
return {
active,
onChange,
};
},
};
API
Sidebar Props
| Attribute | Description | Type | Default |
|---|---|---|---|
| v-model | Index of chosen item | number | string | 0 |
Sidebar Events
| Event | Description | Arguments |
|---|---|---|
| change | Emitted when chosen item changed | index: number |
SidebarItem Props
| Attribute | Description | Type | Default |
|---|---|---|---|
| title | Content | string | '' |
| dot | Whether to show red dot | boolean | false |
| badge | 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 | Emitted when an item is clicked | index: number |
SidebarItem Slots
| Name | Description |
|---|---|
| title | Custom item title |
Less Variables
How to use: Custom Theme.
| Name | Default Value | Description |
|---|---|---|
| @sidebar-width | 80px |
- |
| @sidebar-font-size | @font-size-md |
- |
| @sidebar-line-height | @line-height-md |
- |
| @sidebar-text-color | @text-color |
- |
| @sidebar-disabled-text-color | @gray-5 |
- |
| @sidebar-padding | 20px @padding-sm |
- |
| @sidebar-active-color | @active-color |
- |
| @sidebar-background-color | @background-color |
- |
| @sidebar-selected-font-weight | @font-weight-bold |
- |
| @sidebar-selected-text-color | @text-color |
- |
| @sidebar-selected-border-width | 4px |
- |
| @sidebar-selected-border-height | 16px |
- |
| @sidebar-selected-border-color | @red |
- |
| @sidebar-selected-background-color | @white |
- |