Disclosure
A simple, accessible foundation for building custom UIs that show and hide content, like togglable accordion panels.
To get started, install Headless UI via npm.
Please note that this library only supports Vue 3.
npm install @headlessui/vue
Disclosures are built using the Disclosure, DisclosureButton and DisclosurePanel components.
The button will automatically open/close the panel when clicked, and all components will receive the appropriate aria-* related attributes like aria-expanded and aria-controls.
<template> <Disclosure> <DisclosureButton class="py-2"> Is team pricing available? </DisclosureButton> <DisclosurePanel class="text-gray-500"> Yes! You can purchase a license that you can share with your entire team. </DisclosurePanel> </Disclosure> </template> <script setup> import { Disclosure, DisclosureButton, DisclosurePanel, } from '@headlessui/vue' </script>
Headless UI keeps track of a lot of state about each component, like which listbox option is currently selected, whether a popover is open or closed, or which item in a disclosure is currently active via the keyboard.
But because the components are headless and completely unstyled out of the box, you can't see this information in your UI until you provide the styles you want for each state yourself.
Each component exposes information about its current state via slot props that you can use to conditionally apply different styles or render different content.
For example, the Disclosure component exposes an open state, which tells you if the disclosure is currently open.
<template><Disclosure v-slot="{ open }"><!-- Use the `open` state to conditionally change the direction of an icon. --> <DisclosureButton class="py-2"> <span>Do you offer technical support?</span><ChevronRightIcon :class="open && 'rotate-90 transform'" /></DisclosureButton> <DisclosurePanel>No</DisclosurePanel> </Disclosure> </template> <script setup> import { Disclosure, DisclosureButton, DisclosurePanel, } from '@headlessui/vue' import { ChevronRightIcon } from '@heroicons/vue/20/solid' </script>
For a complete list of all the available slot props, see the component API documentation.
Each component also exposes information about its current state via a data-headlessui-state attribute that you can use to conditionally apply different styles.
When any of the states in the slot prop API are true, they will be listed in this attribute as space-separated strings so you can target them with a CSS attribute selector in the form [attr~=value].
For example, here's what the Disclosure component renders when the disclosure is open:
<!-- Rendered `Disclosure` --> <div data-headlessui-state="open"> <button data-headlessui-state="open">Do you offer technical support?</button> <div data-headlessui-state="open">No</div> </div>
If you are using Tailwind CSS, you can use the @headlessui/tailwindcss plugin to target this attribute with modifiers like ui-open:*:
<template> <Disclosure> <DisclosureButton class="py-2"> <span>Do you offer technical support?</span><ChevronRightIcon class="ui-open:rotate-90 ui-open:transform" /></DisclosureButton> <DisclosurePanel>No</DisclosurePanel> </Disclosure> </template> <script setup> import { Disclosure, DisclosureButton, DisclosurePanel, } from '@headlessui/vue' import { ChevronRightIcon } from '@heroicons/vue/20/solid' </script>
By default, your DisclosurePanel will be shown/hidden automatically based on the internal open state tracked within the Disclosure component itself.
<template> <Disclosure> <DisclosureButton>Is team pricing available?</DisclosureButton> <!-- By default, the `DisclosurePanel` will automatically show/hide when the `DisclosureButton` is pressed. --> <DisclosurePanel> Yes! You can purchase a license that you can share with your entire team. </DisclosurePanel> </Disclosure> </template> <script setup> import { Disclosure, DisclosureButton, DisclosurePanel, } from '@headlessui/vue' </script>
If you'd rather handle this yourself (perhaps because you need to add an extra wrapper element for one reason or another), you can pass a static prop to the DisclosurePanel to tell it to always render, and then use the open slot prop to control when the panel is shown/hidden yourself.
<template><Disclosure v-slot="{ open }"><DisclosureButton>Is team pricing available?</DisclosureButton><div v-show="open"><!-- Using the `static` prop, the `DisclosurePanel` is always rendered and the `open` state is ignored. --><DisclosurePanel static>Yes! You can purchase a license that you can share with your entire team. </DisclosurePanel> </div> </Disclosure> </template> <script setup> import { Disclosure, DisclosureButton, DisclosurePanel, } from '@headlessui/vue' </script>
To close a disclosure manually when clicking a child of its panel, render that child as a DisclosureButton. You can use the :as prop to customize which element is being rendered.
<template> <Disclosure> <DisclosureButton>Open mobile menu</DisclosureButton> <DisclosurePanel><DisclosureButton :as="MyLink" href="/home">Home</DisclosureButton><!-- ... --> </DisclosurePanel> </Disclosure> </template> <script setup> import { Disclosure, DisclosureButton, DisclosurePanel, } from '@headlessui/vue' import MyLink from './MyLink' </script>
This is especially useful when using disclosures for things like mobile menus that contain links where you want the disclosure to close when navigating to the next page.
Alternatively, Disclosure and DisclosurePanel expose a close() slot prop which you can use to imperatively close the panel, say after running an async action:
<template> <Disclosure> <DisclosureButton>Terms</DisclosureButton><DisclosurePanel v-slot="{ close }"><button @click="accept(close)">Read and accept</button></DisclosurePanel></Disclosure> </template> <script setup> import { Disclosure, DisclosureButton, DisclosurePanel, } from '@headlessui/vue'async function accept(close) {await fetch('/accept-terms', { method: 'POST' })close()}</script>
By default the DisclosureButton receives focus after calling close(), but you can change this by passing a ref into close(ref).
To animate the opening/closing of your Disclosure's panel, you can use Vue's built-in <transition> component. All you need to do is wrap your DisclosurePanelin a <transition>, and the transition will be applied automatically.
<template> <Disclosure> <DisclosureButton>Is team pricing available?</DisclosureButton> <!-- Use the built-in `transition` component to add transitions. --><transitionenter-active-class="transition duration-100 ease-out"enter-from-class="transform scale-95 opacity-0"enter-to-class="transform scale-100 opacity-100"leave-active-class="transition duration-75 ease-out"leave-from-class="transform scale-100 opacity-100"leave-to-class="transform scale-95 opacity-0"><DisclosurePanel> Yes! You can purchase a license that you can share with your entire team. </DisclosurePanel> </transition> </Disclosure> </template> <script setup> import { Disclosure, DisclosureButton, DisclosurePanel, } from '@headlessui/vue' </script>
If you'd like to coordinate multiple transitions for different children of your Disclosure, check out the Transition component included in Headless UI.
Disclosure and its subcomponents each render a default element that is
sensible for that component: the Button renders a <button>, Panel renders
a <div>. By contrast, the root Disclosure component does not render an
element, and instead renders its children directly by default.
This is easy to change using the as prop, which exists on every component.
<template> <!-- Render a `div` for the root `Disclosure` component --><Disclosure as="div"><!-- Don't render any element (only children) for the `DisclosureButton` component --><DisclosureButton as="template"><button>What languages do you support?</button> </DisclosureButton> <!-- Render a `ul` for the `DisclosurePanel` component --><DisclosurePanel as="ul"><li>HTML</li> <li>CSS</li> <li>JavaScript</li> </DisclosurePanel> </Disclosure> </template> <script setup> import { Disclosure, DisclosureButton, DisclosurePanel, } from '@headlessui/vue' </script>
Clicking a DisclosureButton toggles the Disclosure's panel open and closed.
| Command | Description |
Enter or Space when a | Toggles panel |
| Prop | Default | Description |
as | template | String | ComponentThe element or component the |
defaultOpen | false | BooleanWhether or not the |
| Slot Prop | Description |
open |
Whether or not the disclosure is open. |
close |
Closes the disclosure and refocuses |
| Prop | Default | Description |
as | button | String | ComponentThe element or component the |
| Slot Prop | Description |
open |
Whether or not the disclosure is open. |
| Prop | Default | Description |
as | div | String | ComponentThe element or component the |
static | false | BooleanWhether the element should ignore the internally managed open/closed state. Note: |
unmount | true | BooleanWhether the element should be unmounted or hidden based on the open/closed state. Note: |
| Slot Prop | Description |
open |
Whether or not the disclosure is open. |
close |
Closes the disclosure and refocuses |
If you're interested in predesigned component examples using Headless UI and Tailwind CSS, check out Tailwind UI — a collection of beautifully designed and expertly crafted components built by us.
It's a great way to support our work on open-source projects like this and makes it possible for us to improve them and keep them well-maintained.



