1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-01-15 21:18:41 +00:00
bramw_baserow/web-frontend/modules/core/components/DropdownSection.vue
2024-12-25 08:40:24 +00:00

18 lines
286 B
Vue

<template>
<div class="dropdown-section">
<div class="dropdown-section__title">{{ title }}</div>
<slot></slot>
</div>
</template>
<script>
export default {
name: 'DropdownSection',
props: {
title: {
type: String,
required: true,
},
},
}
</script>