# NavBar ### Intro Provide navigation function for the page, often used at the top of the page. ### Install Register component globally via `app.use`, refer to [Component Registration](#/en-US/advanced-usage#zu-jian-zhu-ce) for more registration ways. ```js import { createApp } from 'vue'; import { NavBar } from 'vant'; const app = createApp(); app.use(NavBar); ``` ## Usage ### Basic Usage ```html ``` ```js import { Toast } from 'vant'; export default { setup() { const onClickLeft = () => Toast('Back'); const onClickRight = () => Toast('Button'); return { onClickLeft, onClickRight, }; }, }; ``` ### 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 | Whether to generate a placeholder element when fixed | _boolean_ | `false` | | z-index | Z-index | _number \| string_ | `1` | | safe-area-inset-top | Whether to enable top safe area adaptation | _boolean_ | `false` | ### Slots | Name | Description | | ----- | ------------------------- | | title | Custom title | | left | Custom left side content | | right | Custom right side content | ### Events | Event | Description | Arguments | | ----------- | ---------------------------------------- | ------------------- | | click-left | Emitted when the left button is clicked | _event: MouseEvent_ | | click-right | Emitted when the right button is clicked | _event: MouseEvent_ | ### CSS Variables The component provides the following CSS variables, which can be used to customize styles. Please refer to [ConfigProvider component](#/en-US/config-provider). | Name | Default Value | Description | | ------------------------------ | -------------------------- | ----------- | | --van-nav-bar-height | _46px_ | - | | --van-nav-bar-background-color | _var(--van-white)_ | - | | --van-nav-bar-arrow-size | _16px_ | - | | --van-nav-bar-icon-color | _var(--van-primary-color)_ | - | | --van-nav-bar-text-color | _var(--van-primary-color)_ | - | | --van-nav-bar-title-font-size | _var(--van-font-size-lg)_ | - | | --van-nav-bar-title-text-color | _var(--van-text-color)_ | - | | --van-nav-bar-z-index | _1_ | - |