mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-18 00:02:15 +00:00
32 lines
457 B
Vue
32 lines
457 B
Vue
<template>
|
|
<div>
|
|
<b v-if="title" class="py-0.5 px-4 mt-2 block text-xs text-gray-400 dark-text-theme">
|
|
{{ title }}
|
|
</b>
|
|
<ul class="option-group py-1">
|
|
<slot></slot>
|
|
</ul>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'OptionGroup',
|
|
props: [
|
|
'title'
|
|
]
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.option-group {
|
|
&:first-child {
|
|
padding-top: 0 !important;
|
|
}
|
|
|
|
&:last-child {
|
|
padding-bottom: 0 !important;
|
|
}
|
|
}
|
|
</style>
|