Skip to content
Sponsored by

MagicAccordion

MagicAccordion is a collection of components intended for building vertically stacked headlines where each reveals related content.

<template>
  <magic-accordion-provider id="magic-accordion-demo" class="w-full">
    <demo-list
      v-for="item in footer"
      :key="item.label"
      :headline="item.label"
      :list="<DemoListProps['list']>item.list"
    />
  </magic-accordion-provider>
</template>

<script lang="ts" setup>
import DemoList, { type DemoListProps } from './components/DemoList.vue'
import { footer } from './data/footer.json'
</script>

Overview

Anatomy

vue
<template>
  <magic-accordion-provider id="your-accordion-id">
    <magic-accordion-view>
      <magic-accordion-trigger>
        <!-- your content -->
      </magic-accordion-trigger>
      <magic-accordion-content>
        <!-- your content -->
      </magic-accordion-content>
    </magic-accordion-view>
  </magic-accordion-provider>
</template>

<script setup>
const { selectView } = useMagicAccordion('your-accordion-id')
</script>

Installation

CLI

Add @maas/vue-equipment to your dependencies.

sh
pnpm install @maas/vue-equipment
sh
npm install @maas/vue-equipment
sh
yarn add @maas/vue-equipment
sh
bun install @maas/vue-equipment

Vue

If you are using Vue, import and add MagicAccordionPlugin to your app.

js
import { createApp } from 'vue'
import { MagicAccordionPlugin } from '@maas/vue-equipment/plugins'

const app = createApp({})

app.use(MagicAccordionPlugin)

Nuxt

The accordion is available as a Nuxt module. In your Nuxt config file add @maas/vue-equipment/nuxt to your modules and add MagicAccordion to the plugins in your configuration.

js
export default defineNuxtConfig({
  modules: ['@maas/vue-equipment/nuxt'],
  vueEquipment: {
    plugins: ['MagicAccordion'],
  },
})

Composable

In order to interact with the accordion from anywhere within your app, we provide a useMagicAccordion composable. Import it directly when needed.

js
import { useMagicAccordion } from '@maas/vue-equipment/plugins'

const { selectView } = useMagicAccordion('your-accordion-id')

function handleClick() {
  selectView('your-view-id')
}

TIP

If you have installed the accordion as a Nuxt module, the composable will be auto-imported and is automatically available in your Nuxt app.

Peer Dependencies

If you haven’t installed the required peer dependencies automatically, you’ll need to install the following packages manually.

Installation

sh
pnpm install @nuxt/kit @maas/vue-autosize @maas/vue-primitive @vueuse/core
sh
npm install @nuxt/kit @maas/vue-autosize @maas/vue-primitive @vueuse/core
sh
yarn add @nuxt/kit @maas/vue-autosize @maas/vue-primitive @vueuse/core
sh
bun install @nuxt/kit @maas/vue-autosize @maas/vue-primitive @vueuse/core

API Reference

MagicAccordionProvider

The MagicAccordionProvider wraps the accordion and configures all child components according to the provided options.

Props

PropTypeRequired
id
MaybeRef<string>true
asChild
booleanfalse
options
MagicAccordionOptionsfalse

Options

To customize the accordion, override the necessary options. Any custom options will be merged with the default options.

OptionTypeDefault
mode
AccordionMode
single
transition
string
string
animation.duration
number200
animation.easing
function
easeOutQuad
disabled
booleanfalse

MagicAccordionView

Props

PropTypeRequired
id
MaybeRef<string>false
asChild
booleanfalse
active
booleanfalse

MagicAccordionContent

Props

PropTypeRequired
asChild
booleanfalse
transition
stringfalse
animation.duration
numberfalse
animation.easing
function
false

CSS Variables

VariableDefault
--magic-accordion-content-clip-pathinset(0)

MagicAccordionTrigger

Props

PropTypeRequired
asChild
booleanfalse
disabled
booleanfalse
trigger
Interaction[]
false

CSS Variables

VariableDefault
--magic-accordion-trigger-cursor-disablednot-allowed