Skip to content

PubAccordion

This is an accordion component that can be used to display content in an accordion. It provides various options for customizing the accordion, such as adding a border, shadow, and rounded corners.

Default accordion

vue
<template>
    <pub-accordion>
        <pub-accordion-panel>
            <pub-accordion-header>What is PehliBazar?</pub-accordion-header>
            <pub-accordion-content>
                <p class="mb-2 text-gray-500">
                    PehliBazar is a premier online marketplace dedicated to bringing you the finest selection of local
                    handicrafts, modern fashion, and daily essentials.
                </p>
                <p class="text-gray-500">
                    Our mission is to support local artisans while providing customers with a seamless shopping
                    experience and high-quality products.
                </p>
            </pub-accordion-content>
        </pub-accordion-panel>
        <pub-accordion-panel>
            <pub-accordion-header>How can I track my order?</pub-accordion-header>
            <pub-accordion-content>
                <p class="mb-2 text-gray-500">
                    Tracking your order is easy! Once your package is dispatched, you will receive a confirmation email
                    containing a tracking ID.
                </p>
                <p class="text-gray-500">
                    You can enter this ID on our
                    <a href="/track-order" class="text-blue-600 hover:underline">Order Tracking</a> page to see the
                    real-time status of your delivery.
                </p>
            </pub-accordion-content>
        </pub-accordion-panel>
        <pub-accordion-panel>
            <pub-accordion-header>What is your return policy?</pub-accordion-header>
            <pub-accordion-content>
                <p class="mb-2 text-gray-500">
                    At PehliBazar, we want you to be completely satisfied with your purchase. If for any reason you are
                    not happy, you can return most items within 30 days of delivery.
                </p>
                <p class="text-gray-500">
                    Please visit our <a href="/returns" class="text-blue-600 hover:underline">Returns Portal</a> to
                    review eligibility and start your return process.
                </p>
            </pub-accordion-content>
        </pub-accordion-panel>
    </pub-accordion>
</template>

<script setup>
import { PubAccordion, PubAccordionPanel, PubAccordionHeader, PubAccordionContent } from "vuelicity";
</script>

Persistent accordion

Prop - persistent Usage

The persistent prop can be used to keep the items open when another item is clicked.

vue
<template>
    <pub-accordion persistent>
        <pub-accordion-panel>
            <pub-accordion-header>What is PehliBazar?</pub-accordion-header>
            <pub-accordion-content>
                <p class="mb-2 text-gray-500">
                    PehliBazar is a premier online marketplace dedicated to bringing you the finest selection of local
                    handicrafts, modern fashion, and daily essentials.
                </p>
                <p class="text-gray-500">
                    Our mission is to support local artisans while providing customers with a seamless shopping
                    experience and high-quality products.
                </p>
            </pub-accordion-content>
        </pub-accordion-panel>
        <pub-accordion-panel>
            <pub-accordion-header>How can I track my order?</pub-accordion-header>
            <pub-accordion-content>
                <p class="mb-2 text-gray-500">
                    Tracking your order is easy! Once your package is dispatched, you will receive a confirmation email
                    containing a tracking ID.
                </p>
                <p class="text-gray-500">
                    You can enter this ID on our
                    <a href="/track-order" class="text-blue-600 hover:underline">Order Tracking</a>
                    page to see the real-time status of your delivery.
                </p>
            </pub-accordion-content>
        </pub-accordion-panel>
        <pub-accordion-panel>
            <pub-accordion-header>What is your return policy?</pub-accordion-header>
            <pub-accordion-content>
                <p class="mb-2 text-gray-500">
                    At PehliBazar, we want you to be completely satisfied with your purchase. If for any reason you are
                    not happy, you can return most items within 30 days of delivery.
                </p>
                <p class="text-gray-500">
                    Please visit our
                    <a href="/returns" class="text-blue-600 hover:underline">Returns Portal</a>
                    to review eligibility and start your return process.
                </p>
            </pub-accordion-content>
        </pub-accordion-panel>
    </pub-accordion>
</template>

<script setup>
import { PubAccordion, PubAccordionContent, PubAccordionHeader, PubAccordionPanel } from "vuelicity";
</script>

Flushed accordion

Prop - flushed Usage

The flushed prop can be used to remove the default background-color and rounded corners.

vue
<template>
    <pub-accordion flushed>
        <pub-accordion-panel>
            <pub-accordion-header>What is PehliBazar?</pub-accordion-header>
            <pub-accordion-content>
                <p class="mb-2 text-gray-500">
                    PehliBazar is a premier online marketplace dedicated to bringing you the finest selection of local
                    handicrafts, modern fashion, and daily essentials.
                </p>
                <p class="text-gray-500">
                    Our mission is to support local artisans while providing customers with a seamless shopping
                    experience and high-quality products.
                </p>
            </pub-accordion-content>
        </pub-accordion-panel>
        <pub-accordion-panel>
            <pub-accordion-header>How can I track my order?</pub-accordion-header>
            <pub-accordion-content>
                <p class="mb-2 text-gray-500">
                    Tracking your order is easy! Once your package is dispatched, you will receive a confirmation email
                    containing a tracking ID.
                </p>
                <p class="text-gray-500">
                    You can enter this ID on our
                    <a href="/track-order" class="text-blue-600 hover:underline">Order Tracking</a>
                    page to see the real-time status of your delivery.
                </p>
            </pub-accordion-content>
        </pub-accordion-panel>
        <pub-accordion-panel>
            <pub-accordion-header>What is your return policy?</pub-accordion-header>
            <pub-accordion-content>
                <p class="mb-2 text-gray-500">
                    At PehliBazar, we want you to be completely satisfied with your purchase. If for any reason you are
                    not happy, you can return most items within 30 days of delivery.
                </p>
                <p class="text-gray-500">
                    Please visit our
                    <a href="/returns" class="text-blue-600 hover:underline">Returns Portal</a>
                    to review eligibility and start your return process.
                </p>
            </pub-accordion-content>
        </pub-accordion-panel>
    </pub-accordion>
</template>

<script setup>
import { PubAccordion, PubAccordionContent, PubAccordionHeader, PubAccordionPanel } from "vuelicity";
</script>

Initially collapsed

Prop - collapsed Usage

The collapsed prop can be used to collapse the accordion to the first open item.

vue
<template>
    <pub-accordion collapsed>
        <pub-accordion-panel>
            <pub-accordion-header>What is PehliBazar?</pub-accordion-header>
            <pub-accordion-content>
                <p class="mb-2 text-gray-500">
                    PehliBazar is a premier online marketplace dedicated to bringing you the finest selection of local
                    handicrafts, modern fashion, and daily essentials.
                </p>
                <p class="text-gray-500">
                    Our mission is to support local artisans while providing customers with a seamless shopping
                    experience and high-quality products.
                </p>
            </pub-accordion-content>
        </pub-accordion-panel>
        <pub-accordion-panel>
            <pub-accordion-header>How can I track my order?</pub-accordion-header>
            <pub-accordion-content>
                <p class="mb-2 text-gray-500">
                    Tracking your order is easy! Once your package is dispatched, you will receive a confirmation email
                    containing a tracking ID.
                </p>
                <p class="text-gray-500">
                    You can enter this ID on our
                    <a href="/track-order" class="text-blue-600 hover:underline">Order Tracking</a> page to see the
                    real-time status of your delivery.
                </p>
            </pub-accordion-content>
        </pub-accordion-panel>
        <pub-accordion-panel>
            <pub-accordion-header>What is your return policy?</pub-accordion-header>
            <pub-accordion-content>
                <p class="mb-2 text-gray-500">
                    At PehliBazar, we want you to be completely satisfied with your purchase. If for any reason you are
                    not happy, you can return most items within 30 days of delivery.
                </p>
                <p class="text-gray-500">
                    Please visit our <a href="/returns" class="text-blue-600 hover:underline">Returns Portal</a> to
                    review eligibility and start your return process.
                </p>
            </pub-accordion-content>
        </pub-accordion-panel>
    </pub-accordion>
</template>

<script setup>
import { PubAccordion, PubAccordionContent, PubAccordionHeader, PubAccordionPanel } from "vuelicity";
</script>

Colouring Options

vue
<template>
    <pub-accordion>
        <pub-accordion-panel>
            <pub-accordion-header class="hover:bg-blue-200 hover:text-blue-900" activeClass="bg-blue-100 text-blue-900">
                What is PehliBazar?
            </pub-accordion-header>
            <pub-accordion-content>
                <p class="mb-2 text-gray-500">
                    PehliBazar is a premier online marketplace dedicated to bringing you the finest selection of local
                    handicrafts, modern fashion, and daily essentials.
                </p>
                <p class="text-gray-500">
                    Our mission is to support local artisans while providing customers with a seamless shopping
                    experience and high-quality products.
                </p>
            </pub-accordion-content>
        </pub-accordion-panel>
        <pub-accordion-panel>
            <pub-accordion-header class="hover:bg-blue-200 hover:text-blue-900" activeClass="bg-blue-100 text-blue-900">
                How can I track my order?
            </pub-accordion-header>
            <pub-accordion-content>
                <p class="mb-2 text-gray-500">
                    Tracking your order is easy! Once your package is dispatched, you will receive a confirmation email
                    containing a tracking ID.
                </p>
                <p class="text-gray-500">
                    You can enter this ID on our
                    <a href="/track-order" class="text-blue-600 hover:underline">Order Tracking</a> page to see the
                    real-time status of your delivery.
                </p>
            </pub-accordion-content>
        </pub-accordion-panel>
        <pub-accordion-panel>
            <pub-accordion-header class="hover:bg-blue-200 hover:text-blue-900" activeClass="bg-blue-100 text-blue-900">
                What is your return policy?
            </pub-accordion-header>
            <pub-accordion-content>
                <p class="mb-2 text-gray-500">
                    At PehliBazar, we want you to be completely satisfied with your purchase. If for any reason you are
                    not happy, you can return most items within 30 days of delivery.
                </p>
                <p class="text-gray-500">
                    Please visit our <a href="/returns" class="text-blue-600 hover:underline">Returns Portal</a> to
                    review eligibility and start your return process.
                </p>
            </pub-accordion-content>
        </pub-accordion-panel>
    </pub-accordion>
</template>

<script setup>
import { PubAccordion, PubAccordionPanel, PubAccordionHeader, PubAccordionContent } from "vuelicity";
</script>

Reference

PubAccordion

Properties

NameTypeDefaultDescriptionOptions
flushedBooleanfalseWhether to remove the default background-color and rounded corners.
persistentBooleanfalseWhether to keep the items open when another item is clicked.
collapsedBooleanfalseWhether to collapse the accordion to the first open item.
classString''Additional CSS classes to apply.

Slots

NameDescription
defaultSlot for PubAccordionPanel components.

PubAccordionPanel

Properties

NameTypeDefaultDescriptionOptions
activeClassString''Additional CSS classes to apply to the active panel.

Slots

NameDescription
defaultSlot for PubAccordionHeader and PubAccordionContent components.

Emits

NameDescription
showEmitted when the panel is shown.
hideEmitted when the panel is hidden.

PubAccordionHeader

Properties

NameTypeDefaultDescriptionOptions
activeClassString''Additional CSS classes to apply to the active panel.
classString''Additional CSS classes to apply.

Slots

NameDescription
defaultThe header content of the accordion panel.

PubAccordionContent

Properties

NameTypeDefaultDescriptionOptions
classString''Additional CSS classes to apply.
activeClassString''Additional CSS classes to apply to the active panel.

Slots

NameDescription
defaultThe body content of the accordion panel.

Released under the MIT License.