## IndexBar ### Install ``` javascript import { IndexBar } from 'vant'; Vue.use(IndexBar); ``` ### Usage #### Basic Usage ```html ... ``` #### Custom Index List ```html Title 1 Title 2 ... ``` ```js export default { data() { return { indexList: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] } } } ``` ### IndexBar Props | Attribute | Description | Type | Default | |------|------|------|------| | index-list | Index List | `Array` | `A-Z` | ### IndexAnchor Props | Attribute | Description | Type | Default | |------|------|------|------| | index | Index | `String | Number` | - | ### IndexAnchor Slots | Name | Description | |------|------| | default | Anchor content, show index by default |