Files
mealie/frontend/components/global/BaseExpansionPanels.vue
2025-10-24 09:43:55 -05:00

18 lines
300 B
Vue

<template>
<v-expansion-panels v-model="open">
<slot />
</v-expansion-panels>
</template>
<script setup lang="ts">
interface Props {
startOpen?: boolean;
}
const props = withDefaults(defineProps<Props>(), {
startOpen: false,
});
const open = ref(props.startOpen ? [0] : []);
</script>