# NavBar ### Install ```js import Vue from 'vue'; import { NavBar } from 'vant'; Vue.use(NavBar); ``` ## Usage ### Basic Usage ```html ``` ```js import { Toast } from 'vant'; export default { methods: { onClickLeft() { Toast('Back'); }, onClickRight() { Toast('Button'); } } } ``` ### Advanced Usage ```html ``` ## API ### Props | Attribute | Description | Type | Default | |------|------|------|------| | title | Title | *string* | `''` | | left-text | Left Text | *string* | `''` | | right-text | Right Text | *string* | `''` | | left-arrow | Whether to show left arrow | *boolean* | `false` | | fixed | Whether to fixed top | *boolean* | `false` | | border | Whether to show bottom border | *boolean* | `true` | | z-index | Z-index | *number \| string* | `1` | ### Slots | Name | Description | |------|------| | title | Custom title | | left | Custom left side content | | right | Custom right side content | ### Events | Event | Description | Arguments | |------|------|------| | click-left | Triggered when click left button | - | | click-right | Triggered when click right button | - |