# 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'); }, }, }; ``` ### Use Slot ```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` | | border | Whether to show bottom border | _boolean_ | `true` | | fixed | Whether to fixed top | _boolean_ | `false` | | placeholder `v2.5.9` | Whether to generage a placeholder element when fixed | _boolean_ | `false` | | 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 | - |