# Sidebar Section
The SidebarSection component allows you to divider your sidebar into sections with titles. It's recommended to use the SidebarSubsection component as content of SidebarSections.
# Title
Use the title
prop or slot to give your section a title. Titles are required.
# Icon
Use the icon
prop to add an icon to your sidebar section. If you use the title slot, you'll need to manually add an icon to your title slot.
# Actions
Use the actions
slot to add actions like buttons or icons to your sidebar section. The actions will render on the right side of the sidebar section header, and are compatible with collapsible sections. This is ideal for adding a settings gear, for example.
# Collapsed Sections
Pass a Boolean
to the is-collapsed.sync
prop to add collapsing functionality to your SidebarSection. The .sync
will automatically toggle & animate collapsing the section when the title bar is clicked.
When is-collapsed
is...
- null: (default) the section will not appear collapsible
- true: the section will appear collapsed
- false: the section will appear collapsed
# Collapsing Sections Programatically
If desired you can close the section yourself by changing the value of the boolean passed in after initial load.
# Watching collapse events
Use the @update:isCollapsed
event to listen to collapse events.