* refactor: eslint config adjusted for better diff's * refactor: stricter linting + dependencies updated * refactoring: paragraph component - component - docs * refactoring: heading component - component - docs * Update docs/components/heading.md Co-authored-by: Ilya Artamonov <ilya.sosidka@gmail.com> * refactoring: link component - component - docs * refactoring: image component - component - docs * refactoring: alert component - component - docs * refactoring: avatar component - component - docs * refactoring: removed unnecessary code - component names come from the file name * refactoring: breadcrumb component - component - docs * refactoring: accordion component - component - docs * refactoring: buttom component - component - docs * refactoring: badge component - component - docs * refactoring: card component - component - docs * refactoring: order of components in docs updated * refactoring: unnecessary semicolons removed * refactoring: button group component - component - docs * refactoring: carousel component - component - docs * refactoring: dropdown component - component - docs * refactoring: footer component - component - docs * refactoring:list-group component - component - docs * refactoring: modal component - component - docs * refactoring: navbar component - component - docs * refactoring: pagination component - component - docs * refactoring: progress component - component - docs * refactoring: rating component - component - docs * refactoring: spinner component - component - docs * refactoring: table component - component - docs * refactoring: tabs component - component - docs * feat: Updated pagination examples * lint: Lister fixes * feat: Sidebar component and some fixes * feat: Input component * feat: Some fixes * feat: Some fixes * chore: update deps * refactor: removed old Modal component * refactor: radio component and some fixes * fix: fixed path error * refactor: Range component * refactoring: timeline component - component - docs * refactor: Select component * refactoring: toast component - component - docs * refactoring: tooltip component - component - docs * refactoring: sidebar component - component - docs * refactoring: input component - component - docs * refactoring: fileInput component - component - docs * refactoring: select component - component - docs * refactoring: textarea component - component - docs * refactoring: checkbox component - component - docs * refactoring: radio component - component - docs * refactoring: toggle component - component - docs * refactoring: range component - component - docs * local configs linted * documentation quick start updated * flowbite-themable refactored to fit new linters and style guide * random linter fixes * refactoring: toast-provider component - component - docs * final linter fixes * lint: Linter fixes * fix: Fixed types * fix: Fixed card component * docs: Updated card examples * fix: Fixed tabs * refactor: Heading component refactoring * Fwb rename - few fixes after component review (#237) * fix: button documentation * fix: model type in range examples * chore: Toast marked as WIP --------- Co-authored-by: Sqrcz <naorniakowski@slashlab.pl> Co-authored-by: Sqrcz <naorniakowski@gmail.com>
313 lines
13 KiB
Markdown
313 lines
13 KiB
Markdown
<script setup>
|
|
import FwbAccordionExample from './accordion/examples/FwbAccordionExample.vue'
|
|
import FwbAccordionExampleAlwaysOpen from './accordion/examples/FwbAccordionExampleAlwaysOpen.vue'
|
|
import FwbAccordionExampleFlush from './accordion/examples/FwbAccordionExampleFlush.vue'
|
|
import FwbAccordionExampleStyledHeaders from './accordion/examples/FwbAccordionExampleStyledHeaders.vue'
|
|
import FwbAccordionExampleFirstItemClosed from './accordion/examples/FwbAccordionExampleFirstItemClosed.vue'
|
|
</script>
|
|
# Vue Accordion - Flowbite
|
|
|
|
#### Use Tailwind CSS accordion component to show expanding content
|
|
---
|
|
|
|
:::tip
|
|
Original reference: [https://flowbite.com/docs/components/accordion/](https://flowbite.com/docs/components/accordion/)
|
|
:::
|
|
|
|
## Default accordion
|
|
Use this example to basic accordion.
|
|
|
|
<fwb-accordion-example />
|
|
```vue
|
|
<template>
|
|
<fwb-accordion>
|
|
<fwb-accordion-panel>
|
|
<fwb-accordion-header>header</fwb-accordion-header>
|
|
<fwb-accordion-content>
|
|
<div>
|
|
<p class="mb-2 text-gray-500 dark:text-gray-400">
|
|
Flowbite is an open-source library of interactive components built on top of Tailwind CSS including buttons, dropdowns, modals, navbars, and more.
|
|
</p>
|
|
<p class="text-gray-500 dark:text-gray-400">
|
|
Check out this guide to learn how to <a href="/docs/getting-started/introduction/" class="text-blue-600 dark:text-blue-500 hover:underline">get started</a> and start developing websites even faster with components on top of Tailwind CSS.
|
|
</p>
|
|
</div>
|
|
</fwb-accordion-content>
|
|
</fwb-accordion-panel>
|
|
<fwb-accordion-panel>
|
|
<fwb-accordion-header>another header</fwb-accordion-header>
|
|
<fwb-accordion-content>
|
|
<div>
|
|
<p class="mb-2 text-gray-500 dark:text-gray-400">
|
|
Flowbite is first conceptualized and designed using the Figma software so everything you see in the library has a design equivalent in our Figma file.
|
|
</p>
|
|
<p class="text-gray-500 dark:text-gray-400">
|
|
Check out the <a href="https://flowbite.com/figma/" class="text-blue-600 dark:text-blue-500 hover:underline" >Figma design system</a> based on the utility classes from Tailwind CSS and components from Flowbite.
|
|
</p>
|
|
</div>
|
|
</fwb-accordion-content>
|
|
</fwb-accordion-panel>
|
|
<fwb-accordion-panel>
|
|
<fwb-accordion-header>and one more header</fwb-accordion-header>
|
|
<fwb-accordion-content>
|
|
<div>
|
|
<p class="mb-2 text-gray-500 dark:text-gray-400">
|
|
Flowbite is first conceptualized and designed using the Figma software so everything you see in the library has a design equivalent in our Figma file.
|
|
</p>
|
|
<p class="text-gray-500 dark:text-gray-400">
|
|
Check out the <a href="https://flowbite.com/figma/" class="text-blue-600 dark:text-blue-500 hover:underline">Figma design system</a> based on the utility classes from Tailwind CSS and components from Flowbite.
|
|
</p>
|
|
</div>
|
|
</fwb-accordion-content>
|
|
</fwb-accordion-panel>
|
|
</fwb-accordion>
|
|
</template>
|
|
|
|
<script setup>
|
|
import {
|
|
FwbAccordion,
|
|
FwbAccordionContent,
|
|
FwbAccordionHeader,
|
|
FwbAccordionPanel,
|
|
} from 'flowbite-vue'
|
|
</script>
|
|
|
|
```
|
|
|
|
## Always open accordion
|
|
Always open prop to makes accordion able to open multiple elements.
|
|
|
|
<fwb-accordion-example-always-open />
|
|
```vue
|
|
<template>
|
|
<fwb-accordion always-open>
|
|
<fwb-accordion-panel>
|
|
<fwb-accordion-header>header</fwb-accordion-header>
|
|
<fwb-accordion-content>
|
|
<div>
|
|
<p class="mb-2 text-gray-500 dark:text-gray-400">
|
|
Flowbite is an open-source library of interactive components built on top of Tailwind CSS including buttons, dropdowns, modals, navbars, and more.
|
|
</p>
|
|
<p class="text-gray-500 dark:text-gray-400">
|
|
Check out this guide to learn how to <a class="text-blue-600 dark:text-blue-500 hover:underline" href="/docs/getting-started/introduction/">get started</a> and start developing websites even faster with components on top of Tailwind CSS.
|
|
</p>
|
|
</div>
|
|
</fwb-accordion-content>
|
|
</fwb-accordion-panel>
|
|
<fwb-accordion-panel>
|
|
<fwb-accordion-header>another header</fwb-accordion-header>
|
|
<fwb-accordion-content>
|
|
<div>
|
|
<p class="mb-2 text-gray-500 dark:text-gray-400">
|
|
Flowbite is first conceptualized and designed using the Figma software so everything you see in the library has a design equivalent in our Figma file.
|
|
</p>
|
|
<p class="text-gray-500 dark:text-gray-400">
|
|
Check out the <a class="text-blue-600 dark:text-blue-500 hover:underline" href="https://flowbite.com/figma/">Figma design system</a> based on the utility classes from Tailwind CSS and components from Flowbite.
|
|
</p>
|
|
</div>
|
|
</fwb-accordion-content>
|
|
</fwb-accordion-panel>
|
|
<fwb-accordion-panel>
|
|
<fwb-accordion-header>and one more header</fwb-accordion-header>
|
|
<fwb-accordion-content>
|
|
<div>
|
|
<p class="mb-2 text-gray-500 dark:text-gray-400">
|
|
Flowbite is first conceptualized and designed using the Figma software so everything you see in the library has a design equivalent in our Figma file.
|
|
</p>
|
|
<p class="text-gray-500 dark:text-gray-400">
|
|
Check out the <a class="text-blue-600 dark:text-blue-500 hover:underline" href="https://flowbite.com/figma/">Figma design system</a> based on the utility classes from Tailwind CSS and components from Flowbite.
|
|
</p>
|
|
</div>
|
|
</fwb-accordion-content>
|
|
</fwb-accordion-panel>
|
|
</fwb-accordion>
|
|
</template>
|
|
|
|
<script setup>
|
|
import {
|
|
FwbAccordion,
|
|
FwbAccordionContent,
|
|
FwbAccordionHeader,
|
|
FwbAccordionPanel,
|
|
} from 'flowbite-vue'
|
|
</script>
|
|
```
|
|
|
|
## Flush accordion
|
|
Flush prop removes side borders, and rounded corners
|
|
|
|
<fwb-accordion-example-flush />
|
|
```vue
|
|
<template>
|
|
<fwb-accordion flush>
|
|
<fwb-accordion-panel>
|
|
<fwb-accordion-header>header</fwb-accordion-header>
|
|
<fwb-accordion-content>
|
|
<div>
|
|
<p class="mb-2 text-gray-500 dark:text-gray-400">
|
|
Flowbite is an open-source library of interactive components built on top of Tailwind CSS including buttons, dropdowns, modals, navbars, and more.
|
|
</p>
|
|
<p class="text-gray-500 dark:text-gray-400">
|
|
Check out this guide to learn how to <a class="text-blue-600 dark:text-blue-500 hover:underline" href="/docs/getting-started/introduction/">get started</a> and start developing websites even faster with components on top of Tailwind CSS.
|
|
</p>
|
|
</div>
|
|
</fwb-accordion-content>
|
|
</fwb-accordion-panel>
|
|
<fwb-accordion-panel>
|
|
<fwb-accordion-header>another header</fwb-accordion-header>
|
|
<fwb-accordion-content>
|
|
<div>
|
|
<p class="mb-2 text-gray-500 dark:text-gray-400">
|
|
Flowbite is first conceptualized and designed using the Figma software so everything you see in the library has a design equivalent in our Figma file.
|
|
</p>
|
|
<p class="text-gray-500 dark:text-gray-400">
|
|
Check out the <a class="text-blue-600 dark:text-blue-500 hover:underline" href="https://flowbite.com/figma/">Figma design system</a> based on the utility classes from Tailwind CSS and components from Flowbite.
|
|
</p>
|
|
</div>
|
|
</fwb-accordion-content>
|
|
</fwb-accordion-panel>
|
|
<fwb-accordion-panel>
|
|
<fwb-accordion-header>and one more header</fwb-accordion-header>
|
|
<fwb-accordion-content>
|
|
<div>
|
|
<p class="mb-2 text-gray-500 dark:text-gray-400">
|
|
Flowbite is first conceptualized and designed using the Figma software so everything you see in the library has a design equivalent in our Figma file.
|
|
</p>
|
|
<p class="text-gray-500 dark:text-gray-400">
|
|
Check out the <a class="text-blue-600 dark:text-blue-500 hover:underline" href="https://flowbite.com/figma/">Figma design system</a> based on the utility classes from Tailwind CSS and components from Flowbite.
|
|
</p>
|
|
</div>
|
|
</fwb-accordion-content>
|
|
</fwb-accordion-panel>
|
|
</fwb-accordion>
|
|
</template>
|
|
|
|
<script setup>
|
|
import {
|
|
FwbAccordion,
|
|
FwbAccordionContent,
|
|
FwbAccordionHeader,
|
|
FwbAccordionPanel,
|
|
} from 'flowbite-vue'
|
|
</script>
|
|
```
|
|
|
|
## Styling accordion
|
|
You can style accordion content and headers by passing tailwind classes into them.
|
|
|
|
<fwb-accordion-example-styled-headers />
|
|
```vue
|
|
<template>
|
|
<fwb-accordion>
|
|
<fwb-accordion-panel>
|
|
<fwb-accordion-header>header</fwb-accordion-header>
|
|
<fwb-accordion-content>
|
|
<div>
|
|
<p class="mb-2 text-gray-500 dark:text-gray-400">
|
|
Flowbite is an open-source library of interactive components built on top of Tailwind CSS including buttons, dropdowns, modals, navbars, and more.
|
|
</p>
|
|
<p class="text-gray-500 dark:text-gray-400">
|
|
Check out this guide to learn how to <a class="text-blue-600 dark:text-blue-500 hover:underline" href="/docs/getting-started/introduction/">get started</a> and start developing websites even faster with components on top of Tailwind CSS.
|
|
</p>
|
|
</div>
|
|
</fwb-accordion-content>
|
|
</fwb-accordion-panel>
|
|
<fwb-accordion-panel>
|
|
<fwb-accordion-header class="bg-pink-200 dark:bg-pink-900 dark:text-gray-50">
|
|
another header
|
|
</fwb-accordion-header>
|
|
<fwb-accordion-content>
|
|
<div>
|
|
<p class="mb-2 text-gray-500 dark:text-gray-400">
|
|
Flowbite is first conceptualized and designed using the Figma software so everything you see in the library has a design equivalent in our Figma file.
|
|
</p>
|
|
<p class="text-gray-500 dark:text-gray-400">
|
|
Check out the <a class="text-blue-600 dark:text-blue-500 hover:underline" href="https://flowbite.com/figma/">Figma design system</a> based on the utility classes from Tailwind CSS and components from Flowbite.
|
|
</p>
|
|
</div>
|
|
</fwb-accordion-content>
|
|
</fwb-accordion-panel>
|
|
<fwb-accordion-panel>
|
|
<fwb-accordion-header>and one more header</fwb-accordion-header>
|
|
<fwb-accordion-content>
|
|
<div>
|
|
<p class="mb-2 text-gray-500 dark:text-gray-400">
|
|
Flowbite is first conceptualized and designed using the Figma software so everything you see in the library has a design equivalent in our Figma file.
|
|
</p>
|
|
<p class="text-gray-500 dark:text-gray-400">
|
|
Check out the <a class="text-blue-600 dark:text-blue-500 hover:underline" href="https://flowbite.com/figma/">Figma design system</a> based on the utility classes from Tailwind CSS and components from Flowbite.
|
|
</p>
|
|
</div>
|
|
</fwb-accordion-content>
|
|
</fwb-accordion-panel>
|
|
</fwb-accordion>
|
|
</template>
|
|
|
|
<script setup>
|
|
import {
|
|
FwbAccordion,
|
|
FwbAccordionContent,
|
|
FwbAccordionHeader,
|
|
FwbAccordionPanel,
|
|
} from 'flowbite-vue'
|
|
</script>
|
|
```
|
|
|
|
## Closed first item
|
|
|
|
<fwb-accordion-example-first-item-closed />
|
|
```vue
|
|
<template>
|
|
<fwb-accordion :open-first-item="false">
|
|
<fwb-accordion-panel>
|
|
<fwb-accordion-header>header</fwb-accordion-header>
|
|
<fwb-accordion-content>
|
|
<div>
|
|
<p class="mb-2 text-gray-500 dark:text-gray-400">
|
|
Flowbite is an open-source library of interactive components built on top of Tailwind CSS including buttons, dropdowns, modals, navbars, and more.
|
|
</p>
|
|
<p class="text-gray-500 dark:text-gray-400">
|
|
Check out this guide to learn how to <a href="/docs/getting-started/introduction/" class="text-blue-600 dark:text-blue-500 hover:underline">get started</a> and start developing websites even faster with components on top of Tailwind CSS.
|
|
</p>
|
|
</div>
|
|
</fwb-accordion-content>
|
|
</fwb-accordion-panel>
|
|
<fwb-accordion-panel>
|
|
<fwb-accordion-header>another header</fwb-accordion-header>
|
|
<fwb-accordion-content>
|
|
<div>
|
|
<p class="mb-2 text-gray-500 dark:text-gray-400">
|
|
Flowbite is first conceptualized and designed using the Figma software so everything you see in the library has a design equivalent in our Figma file.
|
|
</p>
|
|
<p class="text-gray-500 dark:text-gray-400">
|
|
Check out the <a href="https://flowbite.com/figma/" class="text-blue-600 dark:text-blue-500 hover:underline">Figma design system</a> based on the utility classes from Tailwind CSS and components from Flowbite.
|
|
</p>
|
|
</div>
|
|
</fwb-accordion-content>
|
|
</fwb-accordion-panel>
|
|
<fwb-accordion-panel>
|
|
<fwb-accordion-header>and one more header</fwb-accordion-header>
|
|
<fwb-accordion-content>
|
|
<div>
|
|
<p class="mb-2 text-gray-500 dark:text-gray-400">
|
|
Flowbite is first conceptualized and designed using the Figma software so everything you see in the library has a design equivalent in our Figma file.
|
|
</p>
|
|
<p class="text-gray-500 dark:text-gray-400">
|
|
Check out the <a href="https://flowbite.com/figma/" class="text-blue-600 dark:text-blue-500 hover:underline">Figma design system</a> based on the utility classes from Tailwind CSS and components from Flowbite.
|
|
</p>
|
|
</div>
|
|
</fwb-accordion-content>
|
|
</fwb-accordion-panel>
|
|
</fwb-accordion>
|
|
</template>
|
|
|
|
<script setup>
|
|
import {
|
|
FwbAccordion,
|
|
FwbAccordionContent,
|
|
FwbAccordionHeader,
|
|
FwbAccordionPanel,
|
|
} from 'flowbite-vue'
|
|
</script>
|
|
```
|