Documentation and examples for the Vue navbar powerful, responsive navigation header component. Includes support for branding, links, dropdowns, and more.
Available in Other JavaScript Frameworks
CoreUI Vue Navbar Component is also available for Bootstrap and React. Explore framework-specific implementations below:
Supported content
<CNavbar> come with built-in support for a handful of sub-components. Choose from the following as needed:
<CNavbarBrand>for your company, product, or project name.<CNavbarNav>for a full-height and lightweight navigation (including support for dropdowns).<CNavbarToggler>for use with our collapse plugin and other navigation toggling behaviors.- Flex and spacing utilities for any form controls and actions.
<CNavbarText>for adding vertically centered strings of text.<CCollapse>for grouping and hiding navbar contents by a parent breakpoint.
Here’s an example of all the sub-components included in a responsive light-themed navbar that automatically collapses at the lg (large) breakpoint.
Basic usage
<template>
<CNavbar expand="lg" color-scheme="light" class="bg-light">
<CContainer fluid>
<CNavbarBrand href="#">Navbar</CNavbarBrand>
<CNavbarToggler @click="visible = !visible" />
<CCollapse class="navbar-collapse" :visible="visible">
<CNavbarNav>
<CNavItem>
<CNavLink href="#" active> Home </CNavLink>
</CNavItem>
<CNavItem>
<CNavLink href="#">Link</CNavLink>
</CNavItem>
<CDropdown variant="nav-item" :popper="false">
<CDropdownToggle color="secondary">Dropdown button</CDropdownToggle>
<CDropdownMenu>
<CDropdownItem href="#">Action</CDropdownItem>
<CDropdownItem href="#">Another action</CDropdownItem>
<CDropdownDivider />
<CDropdownItem href="#">Something else here</CDropdownItem>
</CDropdownMenu>
</CDropdown>
<CNavItem>
<CNavLink href="#" disabled> Disabled </CNavLink>
</CNavItem>
</CNavbarNav>
<CForm class="d-flex">
<CFormInput type="search" class="me-2" placeholder="Search" />
<CButton type="submit" color="success" variant="outline">Search</CButton>
</CForm>
</CCollapse>
</CContainer>
</CNavbar>
</template>
<script setup>
import {
CNavbar,
CContainer,
CNavbarBrand,
CNavbarToggler,
CCollapse,
CNavbarNav,
CNavItem,
CNavLink,
CDropdown,
CDropdownToggle,
CDropdownMenu,
CDropdownItem,
CDropdownDivider,
CForm,
CFormInput,
CButton,
} from '@coreui/vue'
import { ref } from 'vue'
const visible = ref(true)
</script> Brand
The <CNavbarBrand> can be applied to most elements, but an anchor works best, as some elements might require utility classes or custom styles.
<template>
<CNavbar color-scheme="light" class="bg-light">
<CContainer fluid>
<CNavbarBrand href="#">Navbar</CNavbarBrand>
</CContainer>
</CNavbar>
<br />
<CNavbar color-scheme="light" class="bg-light">
<CContainer fluid>
<CNavbarBrand class="mb-0 h1">Navbar</CNavbarBrand>
</CContainer>
</CNavbar>
</template>
<script setup>
import { CNavbar, CContainer, CNavbarBrand } from '@coreui/vue'
</script> Adding images to the <CNavbarBrand> will likely always require custom styles or utilities to properly size. Here are some examples to demonstrate.
<template>
<CNavbar color-scheme="light" class="bg-light">
<CContainer fluid>
<CNavbarBrand href="#">
<img src="/assets/brand/coreui-signet.svg" alt="" width="22" height="24" />
</CNavbarBrand>
</CContainer>
</CNavbar>
</template>
<script setup>
import { CNavbar, CContainer, CNavbarBrand } from '@coreui/vue'
</script> <template>
<CNavbar color-scheme="light" class="bg-light">
<CContainer fluid>
<CNavbarBrand href="#">
<img
src="/assets/brand/coreui-signet.svg"
alt=""
width="22"
height="24"
class="d-inline-block align-top"
/>
CoreUI
</CNavbarBrand>
</CContainer>
</CNavbar>
</template>
<script setup>
import { CNavbar, CContainer, CNavbarBrand } from '@coreui/vue'
</script> Nav
<CNavbar> navigation is based on <CNavbarNav>. Navigation in navbars will also grow to occupy as much horizontal space as possible to keep your navbar contents securely aligned.
<template>
<CNavbar expand="lg" color-scheme="light" class="bg-light">
<CContainer fluid>
<CNavbarBrand href="#">Navbar</CNavbarBrand>
<CNavbarToggler
aria-label="Toggle navigation"
aria-expanded="{visible}"
@click="visible = !visible"
/>
<CCollapse class="navbar-collapse" :visible="visible">
<CNavbarNav>
<CNavItem>
<CNavLink href="#" active> Home </CNavLink>
</CNavItem>
<CNavItem>
<CNavLink href="#">Features</CNavLink>
</CNavItem>
<CNavItem>
<CNavLink href="#">Pricing</CNavLink>
</CNavItem>
<CNavItem>
<CNavLink href="#" disabled>Disabled</CNavLink>
</CNavItem>
</CNavbarNav>
</CCollapse>
</CContainer>
</CNavbar>
</template>
<script setup>
import {
CNavbar,
CContainer,
CNavbarBrand,
CNavbarToggler,
CCollapse,
CNavbarNav,
CNavItem,
CNavLink,
} from '@coreui/vue'
import { ref } from 'vue'
const visible = ref(true)
</script> And because we use classes for our navs, you can avoid the list-based approach entirely if you like.
<template>
<CNavbar expand="lg" color-scheme="light" class="bg-light">
<CContainer fluid>
<CNavbarBrand href="#">Navbar</CNavbarBrand>
<CNavbarToggler
aria-label="Toggle navigation"
aria-expanded="{visible}"
@click="visible = !visible"
/>
<CCollapse class="navbar-collapse" :visible="visible">
<CNavbarNav as="nav">
<CNavLink href="#" active> Home </CNavLink>
<CNavLink href="#">Features</CNavLink>
<CNavLink href="#">Pricing</CNavLink>
<CNavLink href="#" disabled>Disabled</CNavLink>
</CNavbarNav>
</CCollapse>
</CContainer>
</CNavbar>
</template>
<script setup>
import {
CNavbar,
CContainer,
CNavbarBrand,
CNavbarToggler,
CCollapse,
CNavbarNav,
CNavLink,
} from '@coreui/vue'
import { ref } from 'vue'
const visible = ref(true)
</script> You can also use dropdowns in your navbar. Please note that <CDropdown> component requires variant="nav-item".
<template>
<CNavbar expand="lg" color-scheme="light" class="bg-light">
<CContainer fluid>
<CNavbarBrand href="#">Navbar</CNavbarBrand>
<CNavbarToggler
aria-label="Toggle navigation"
aria-expanded="{visible}"
@click="visible = !visible"
/>
<CCollapse class="navbar-collapse" :visible="visible">
<CNavbarNav>
<CNavItem>
<CNavLink href="#" active> Home </CNavLink>
</CNavItem>
<CNavItem>
<CNavLink href="#">Features</CNavLink>
</CNavItem>
<CNavItem>
<CNavLink href="#">Pricing</CNavLink>
</CNavItem>
<CDropdown variant="nav-item" :popper="false">
<CDropdownToggle>Dropdown link</CDropdownToggle>
<CDropdownMenu>
<CDropdownItem href="#">Action</CDropdownItem>
<CDropdownItem href="#">Another action</CDropdownItem>
<CDropdownDivider />
<CDropdownItem href="#">Something else here</CDropdownItem>
</CDropdownMenu>
</CDropdown>
</CNavbarNav>
</CCollapse>
</CContainer>
</CNavbar>
</template>
<script setup>
import {
CNavbar,
CContainer,
CNavbarBrand,
CNavbarToggler,
CCollapse,
CNavbarNav,
CNavItem,
CNavLink,
CDropdown,
CDropdownToggle,
CDropdownMenu,
CDropdownItem,
CDropdownDivider,
} from '@coreui/vue'
import { ref } from 'vue'
const visible = ref(true)
</script> Forms
Place various form controls and components within a navbar:
<template>
<CNavbar color-scheme="light" class="bg-light">
<CContainer fluid>
<CForm class="d-flex">
<CFormInput type="search" class="me-2" placeholder="Search" />
<CButton type="submit" color="success" variant="outline">Search</CButton>
</CForm>
</CContainer>
</CNavbar>
</template>
<script setup>
import { CNavbar, CContainer, CForm, CFormInput, CButton } from '@coreui/vue'
</script> Immediate child elements of <CNavbar> use flex layout and will default to justify-content: space-between. Use additional flex utilities as needed to adjust this behavior.
<template>
<CNavbar color-scheme="light" class="bg-light">
<CContainer fluid>
<CNavbarBrand href="#">Navbar</CNavbarBrand>
<CForm class="d-flex">
<CFormInput type="search" class="me-2" placeholder="Search" />
<CButton type="submit" color="success" variant="outline">Search</CButton>
</CForm>
</CContainer>
</CNavbar>
</template>
<script setup>
import { CNavbar, CContainer, CNavbarBrand, CForm, CFormInput, CButton } from '@coreui/vue'
</script> Input groups work, too. If your navbar is an entire form, or mostly a form, you can use the <CForm> element as the container and save some HTML.
<template>
<CNavbar color-scheme="light" class="bg-light">
<CForm class="container-fluid">
<CInputGroup>
<CInputGroupText id="basic-addon1">@</CInputGroupText>
<CFormInput placeholder="Username" aria-label="Username" aria-describedby="basic-addon1" />
</CInputGroup>
</CForm>
</CNavbar>
</template>
<script setup>
import { CNavbar, CForm, CInputGroup, CInputGroupText, CFormInput } from '@coreui/vue'
</script> Various buttons are supported as part of these navbar forms, too. This is also a great reminder that vertical alignment utilities can be used to align different sized elements.
<template>
<CNavbar color-scheme="light" class="bg-light">
<CForm class="container-fluid justify-content-start">
<CButton type="button" color="success" variant="outline" class="me-2">Main button</CButton>
<CButton type="button" color="secondary" variant="outline" size="sm">Smaller button</CButton>
</CForm>
</CNavbar>
</template>
<script setup>
import { CNavbar, CForm, CButton } from '@coreui/vue'
</script> Text
Navbars may contain bits of text with the help of <CNavbarText>. This class adjusts vertical alignment and horizontal spacing for strings of text.
<template>
<CNavbar color-scheme="light" class="bg-light">
<CContainer fluid>
<CNavbarText>Navbar text with an inline element</CNavbarText>
</CContainer>
</CNavbar>
</template>
<script setup>
import { CNavbar, CContainer, CNavbarText } from '@coreui/vue'
</script> Color schemes
Theming the navbar has never been easier thanks to the combination of theming classes and background-color utilities. Set color-scheme="light" for use with light background colors, or color-scheme="dark" for dark background colors. Then, customize with .bg-* utilities.
<template>
<CNavbar expand="lg" color-scheme="dark" class="bg-dark">
<CContainer fluid>
<CNavbarBrand href="#">Navbar</CNavbarBrand>
<CNavbarToggler
aria-label="Toggle navigation"
aria-expanded="{visible}"
@click="visible = !visible"
/>
<CCollapse class="navbar-collapse" :visible="visible">
<CNavbarNav>
<CNavItem>
<CNavLink href="#" active> Home </CNavLink>
</CNavItem>
<CNavItem>
<CNavLink href="#">Link</CNavLink>
</CNavItem>
<CDropdown variant="nav-item" :popper="false">
<CDropdownToggle color="secondary">Dropdown button</CDropdownToggle>
<CDropdownMenu>
<CDropdownItem href="#">Action</CDropdownItem>
<CDropdownItem href="#">Another action</CDropdownItem>
<CDropdownDivider />
<CDropdownItem href="#">Something else here</CDropdownItem>
</CDropdownMenu>
</CDropdown>
<CNavItem>
<CNavLink href="#" disabled> Disabled </CNavLink>
</CNavItem>
</CNavbarNav>
<CForm class="d-flex">
<CFormInput type="search" class="me-2" placeholder="Search" />
<CButton type="submit" color="light" variant="outline">Search</CButton>
</CForm>
</CCollapse>
</CContainer>
</CNavbar>
<br />
<CNavbar expand="lg" color-scheme="dark" class="bg-primary">
<CContainer fluid>
<CNavbarBrand href="#">Navbar</CNavbarBrand>
<CNavbarToggler
aria-label="Toggle navigation"
aria-expanded="{visible}"
@click="visible = !visible"
/>
<CCollapse class="navbar-collapse" :visible="visible">
<CNavbarNav>
<CNavItem>
<CNavLink href="#" active> Home </CNavLink>
</CNavItem>
<CNavItem>
<CNavLink href="#">Link</CNavLink>
</CNavItem>
<CDropdown variant="nav-item" :popper="false">
<CDropdownToggle color="secondary">Dropdown button</CDropdownToggle>
<CDropdownMenu>
<CDropdownItem href="#">Action</CDropdownItem>
<CDropdownItem href="#">Another action</CDropdownItem>
<CDropdownDivider />
<CDropdownItem href="#">Something else here</CDropdownItem>
</CDropdownMenu>
</CDropdown>
<CNavItem>
<CNavLink href="#" disabled> Disabled </CNavLink>
</CNavItem>
</CNavbarNav>
<CForm class="d-flex">
<CFormInput type="search" class="me-2" placeholder="Search" />
<CButton type="submit" color="light" variant="outline">Search</CButton>
</CForm>
</CCollapse>
</CContainer>
</CNavbar>
<br />
<CNavbar expand="lg" color-scheme="light" style="background-color: #e3f2fd">
<CContainer fluid>
<CNavbarBrand href="#">Navbar</CNavbarBrand>
<CNavbarToggler
aria-label="Toggle navigation"
aria-expanded="{visible}"
@click="visible = !visible"
/>
<CCollapse class="navbar-collapse" :visible="visible">
<CNavbarNav>
<CNavItem>
<CNavLink href="#" active> Home </CNavLink>
</CNavItem>
<CNavItem>
<CNavLink href="#">Link</CNavLink>
</CNavItem>
<CDropdown variant="nav-item" :popper="false">
<CDropdownToggle color="secondary">Dropdown button</CDropdownToggle>
<CDropdownMenu>
<CDropdownItem href="#">Action</CDropdownItem>
<CDropdownItem href="#">Another action</CDropdownItem>
<CDropdownDivider />
<CDropdownItem href="#">Something else here</CDropdownItem>
</CDropdownMenu>
</CDropdown>
<CNavItem>
<CNavLink href="#" disabled> Disabled </CNavLink>
</CNavItem>
</CNavbarNav>
<CForm class="d-flex">
<CFormInput type="search" class="me-2" placeholder="Search" />
<CButton type="submit" color="primary" variant="outline">Search</CButton>
</CForm>
</CCollapse>
</CContainer>
</CNavbar>
</template>
<script setup>
import {
CNavbar,
CContainer,
CNavbarBrand,
CNavbarToggler,
CCollapse,
CNavbarNav,
CNavItem,
CNavLink,
CDropdown,
CDropdownToggle,
CDropdownMenu,
CDropdownItem,
CDropdownDivider,
CForm,
CFormInput,
CButton,
} from '@coreui/vue'
import { ref } from 'vue'
const visible = ref(true)
</script> Containers
Although it’s not required, you can wrap a <CNavbar> in a <CContainer> to center it on a page–though note that an inner container is still required. Or you can add a container inside the <CNavbar> to only center the contents of a fixed or static top navbar.
<template>
<CContainer>
<CNavbar color-scheme="light" class="bg-light">
<CContainer fluid>
<CNavbarBrand href="#">Navbar</CNavbarBrand>
</CContainer>
</CNavbar>
</CContainer>
</template>
<script setup>
import { CContainer, CNavbar, CNavbarBrand } from '@coreui/vue'
</script> Use any of the responsive containers to change how wide the content in your navbar is presented.
<template>
<CNavbar color-scheme="light" class="bg-light">
<CContainer breakpoint="md">
<CNavbarBrand href="#">Navbar</CNavbarBrand>
</CContainer>
</CNavbar>
</template>
<script setup>
import { CNavbar, CContainer, CNavbarBrand } from '@coreui/vue'
</script> Placement
Use our placement properly to place navbars in non-static positions. Choose from fixed to the top, fixed to the bottom, or stickied to the top (scrolls with the page until it reaches the top, then stays there). Fixed navbars use position: fixed, meaning they’re pulled from the normal flow of the DOM and may require custom CSS (e.g., padding-top on the <body>) to prevent overlap with other elements.
Also note that .sticky-top uses position: sticky, which isn’t fully supported in every browser.
<template>
<CNavbar color-scheme="light" class="bg-light">
<CContainer fluid>
<CNavbarBrand href="#">Default</CNavbarBrand>
</CContainer>
</CNavbar>
</template>
<script setup>
import { CNavbar, CContainer, CNavbarBrand } from '@coreui/vue'
</script> <template>
<CNavbar color-scheme="light" class="bg-light" placement="fixed-top">
<CContainer fluid>
<CNavbarBrand href="#">Fixed top</CNavbarBrand>
</CContainer>
</CNavbar>
</template>
<script setup>
import { CNavbar, CContainer, CNavbarBrand } from '@coreui/vue'
</script> <template>
<CNavbar color-scheme="light" class="bg-light" placement="fixed-bottom">
<CContainer fluid>
<CNavbarBrand href="#">Fixed bottom</CNavbarBrand>
</CContainer>
</CNavbar>
</template>
<script setup>
import { CNavbar, CContainer, CNavbarBrand } from '@coreui/vue'
</script> <template>
<CNavbar color-scheme="light" class="bg-light" placement="sticky-top">
<CContainer fluid>
<CNavbarBrand href="#">Sticky top</CNavbarBrand>
</CContainer>
</CNavbar>
</template>
<script setup>
import { CNavbar, CContainer, CNavbarBrand } from '@coreui/vue'
</script> Responsive behaviors
Navbars can use <CNavbarToggler>, <CCollapse>, and expand="{sm|md|lg|xl|xxl}" property to determine when their content collapses behind a button. In combination with other utilities, you can easily choose when to show or hide particular elements.
For navbars that never collapse, add the expand boolean property on the <CNavbar>. For navbars that always collapse, don’t add any property.
Toggler
Navbar togglers are left-aligned by default, but should they follow a sibling element like a <CNavbarBrand>, they’ll automatically be aligned to the far right. Reversing your markup will reverse the placement of the toggler. Below are examples of different toggle styles.
With no <CNavbarBrand> shown at the smallest breakpoint:
<template>
<CNavbar expand="lg" color-scheme="light" class="bg-light">
<CContainer fluid>
<CNavbarToggler
aria-label="Toggle navigation"
aria-expanded="{visible}"
@click="visible = !visible"
/>
<CCollapse class="navbar-collapse" :visible="visible">
<CNavbarBrand href="#">Hidden brand</CNavbarBrand>
<CNavbarNav class="me-auto mb-2 mb-lg-0">
<CNavItem>
<CNavLink href="#" active> Home </CNavLink>
</CNavItem>
<CNavItem>
<CNavLink href="#">Link</CNavLink>
</CNavItem>
<CNavItem>
<CNavLink href="#" disabled> Disabled </CNavLink>
</CNavItem>
</CNavbarNav>
<CForm class="d-flex">
<CFormInput type="search" class="me-2" placeholder="Search" />
<CButton type="submit" color="success" variant="outline">Search</CButton>
</CForm>
</CCollapse>
</CContainer>
</CNavbar>
</template>
<script setup>
import {
CNavbar,
CContainer,
CNavbarToggler,
CCollapse,
CNavbarBrand,
CNavbarNav,
CNavItem,
CNavLink,
CForm,
CFormInput,
CButton,
} from '@coreui/vue'
import { ref } from 'vue'
const visible = ref(true)
</script> With a brand name shown on the left and toggler on the right:
<template>
<CNavbar expand="lg" color-scheme="light" class="bg-light">
<CContainer fluid>
<CNavbarBrand href="#">Navbar</CNavbarBrand>
<CNavbarToggler
aria-label="Toggle navigation"
aria-expanded="{visible}"
@click="visible = !visible"
/>
<CCollapse class="navbar-collapse" :visible="visible">
<CNavbarNav class="me-auto mb-2 mb-lg-0">
<CNavItem>
<CNavLink href="#" active> Home </CNavLink>
</CNavItem>
<CNavItem>
<CNavLink href="#">Link</CNavLink>
</CNavItem>
<CNavItem>
<CNavLink href="#" disabled> Disabled </CNavLink>
</CNavItem>
</CNavbarNav>
<CForm class="d-flex">
<CFormInput type="search" class="me-2" placeholder="Search" />
<CButton type="submit" color="success" variant="outline">Search</CButton>
</CForm>
</CCollapse>
</CContainer>
</CNavbar>
</template>
<script setup>
import {
CNavbar,
CContainer,
CNavbarBrand,
CNavbarToggler,
CCollapse,
CNavbarNav,
CNavItem,
CNavLink,
CForm,
CFormInput,
CButton,
} from '@coreui/vue'
import { ref } from 'vue'
const visible = ref(true)
</script> With a toggler on the left and brand name on the right:
<template>
<CNavbar expand="lg" color-scheme="light" class="bg-light">
<CContainer fluid>
<CNavbarToggler
aria-label="Toggle navigation"
aria-expanded="{visible}"
@click="visible = !visible"
/>
<CNavbarBrand href="#">Navbar</CNavbarBrand>
<CCollapse class="navbar-collapse" :visible="visible">
<CNavbarNav class="me-auto mb-2 mb-lg-0">
<CNavItem>
<CNavLink href="#" active> Home </CNavLink>
</CNavItem>
<CNavItem>
<CNavLink href="#">Link</CNavLink>
</CNavItem>
<CNavItem>
<CNavLink href="#" disabled> Disabled </CNavLink>
</CNavItem>
</CNavbarNav>
<CForm class="d-flex">
<CFormInput type="search" class="me-2" placeholder="Search" />
<CButton type="submit" color="success" variant="outline">Search</CButton>
</CForm>
</CCollapse>
</CContainer>
</CNavbar>
</template>
<script setup>
import {
CNavbar,
CContainer,
CNavbarToggler,
CNavbarBrand,
CCollapse,
CNavbarNav,
CNavItem,
CNavLink,
CForm,
CFormInput,
CButton,
} from '@coreui/vue'
import { ref } from 'vue'
const visible = ref(true)
</script> External content
Sometimes you want to use the collapse plugin to trigger a container element for content that structurally sits outside of the <CNavbar>.
<template>
<CCollapse
id="navbarToggleExternalContent"
:visible="visibleExternalContent"
data-coreui-theme="dark"
>
<div class="bg-dark p-4">
<h5 class="text-body-emphasis h4">Collapsed content</h5>
<span class="text-body-secondary">Toggleable via the navbar brand.</span>
</div>
</CCollapse>
<CNavbar colorScheme="dark" class="bg-dark">
<CContainer fluid>
<CNavbarToggler
aria-controls="navbarToggleExternalContent"
aria-label="Toggle navigation"
@click="visibleExternalContent = !visibleExternalContent"
/>
</CContainer>
</CNavbar>
</template>
<script setup>
import { CCollapse, CNavbar, CContainer, CNavbarToggler } from '@coreui/vue'
import { ref } from 'vue'
const visible = ref(true)
const visibleExternalContent = ref(false)
</script> Offcanvas
Transform your expanding and collapsing navbar into an offcanvas drawer with the offcanvas plugin. We extend both the offcanvas default styles and use our expand="*" prop to create a dynamic and flexible navigation sidebar.
In the example below, to create an offcanvas navbar that is always collapsed across all breakpoints, omit the expand="*" prop entirely.
<template>
<CNavbar colorScheme="light" class="bg-light">
<CContainer fluid>
<CNavbarBrand>Offcanvas navbar</CNavbarBrand>
<CNavbarToggler
aria-controls="offcanvasNavbar"
aria-label="Toggle navigation"
@click="visibleOffcanvas = !visibleOffcanvas"
/>
<COffcanvas
id="offcanvasNavbar"
placement="end"
:visible="visibleOffcanvas"
@hide="visibleOffcanvas = false"
>
<COffcanvasHeader>
<COffcanvasTitle>Offcanvas</COffcanvasTitle>
<CCloseButton class="text-reset" @click="visibleOffcanvas = false" />
</COffcanvasHeader>
<COffcanvasBody>
<CNavbarNav>
<CNavItem>
<CNavLink href="#" active> Home </CNavLink>
</CNavItem>
<CNavItem>
<CNavLink href="#">Link</CNavLink>
</CNavItem>
<CDropdown variant="nav-item" :popper="false">
<CDropdownToggle color="secondary">Dropdown button</CDropdownToggle>
<CDropdownMenu>
<CDropdownItem href="#">Action</CDropdownItem>
<CDropdownItem href="#">Another action</CDropdownItem>
<CDropdownDivider />
<CDropdownItem href="#">Something else here</CDropdownItem>
</CDropdownMenu>
</CDropdown>
<CNavItem>
<CNavLink href="#" disabled> Disabled </CNavLink>
</CNavItem>
</CNavbarNav>
<CForm class="d-flex">
<CFormInput type="search" class="me-2" placeholder="Search" />
<CButton type="submit" color="success" variant="outline"> Search </CButton>
</CForm>
</COffcanvasBody>
</COffcanvas>
</CContainer>
</CNavbar>
</template>
<script setup>
import {
CNavbar,
CContainer,
CNavbarBrand,
CNavbarToggler,
COffcanvas,
COffcanvasHeader,
COffcanvasTitle,
CCloseButton,
COffcanvasBody,
CNavbarNav,
CNavItem,
CNavLink,
CDropdown,
CDropdownToggle,
CDropdownMenu,
CDropdownItem,
CDropdownDivider,
CForm,
CFormInput,
CButton,
} from '@coreui/vue'
import { ref } from 'vue'
const visible = ref(true)
const visibleOffcanvas = ref(false)
</script> To create an offcanvas navbar that expands into a normal navbar at a specific breakpoint like xxl, use expand="xxl" property.
<template>
<CNavbar colorScheme="light" class="bg-light" expand="xxl">
<CContainer fluid>
<CNavbarBrand>Offcanvas navbar</CNavbarBrand>
<CNavbarToggler
aria-controls="offcanvasNavbar2"
aria-label="Toggle navigation"
@click="visibleOffcanvas2 = !visibleOffcanvas2"
/>
<COffcanvas
id="offcanvasNavbar2"
placement="end"
:visible="visibleOffcanvas2"
@hide="visibleOffcanvas2 = false"
>
<COffcanvasHeader>
<COffcanvasTitle>Offcanvas</COffcanvasTitle>
<CCloseButton class="text-reset" @click="visibleOffcanvas2 = false" />
</COffcanvasHeader>
<COffcanvasBody>
<CNavbarNav>
<CNavItem>
<CNavLink href="#" active> Home </CNavLink>
</CNavItem>
<CNavItem>
<CNavLink href="#">Link</CNavLink>
</CNavItem>
<CDropdown variant="nav-item" :popper="false">
<CDropdownToggle color="secondary">Dropdown button</CDropdownToggle>
<CDropdownMenu>
<CDropdownItem href="#">Action</CDropdownItem>
<CDropdownItem href="#">Another action</CDropdownItem>
<CDropdownDivider />
<CDropdownItem href="#">Something else here</CDropdownItem>
</CDropdownMenu>
</CDropdown>
<CNavItem>
<CNavLink href="#" disabled> Disabled </CNavLink>
</CNavItem>
</CNavbarNav>
<CForm class="d-flex">
<CFormInput type="search" class="me-2" placeholder="Search" />
<CButton type="submit" color="success" variant="outline"> Search </CButton>
</CForm>
</COffcanvasBody>
</COffcanvas>
</CContainer>
</CNavbar>
</template>
<script setup>
import {
CNavbar,
CContainer,
CNavbarBrand,
CNavbarToggler,
COffcanvas,
COffcanvasHeader,
COffcanvasTitle,
CCloseButton,
COffcanvasBody,
CNavbarNav,
CNavItem,
CNavLink,
CDropdown,
CDropdownToggle,
CDropdownMenu,
CDropdownItem,
CDropdownDivider,
CForm,
CFormInput,
CButton,
} from '@coreui/vue'
import { ref } from 'vue'
const visible = ref(true)
const visibleOffcanvas2 = ref(false)
</script> API
Check out the documentation below for a comprehensive guide to all the props you can use with the components mentioned here.