mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
24 lines
334 B
Vue
24 lines
334 B
Vue
<template>
|
|
<ul class="option-group py-1">
|
|
<slot></slot>
|
|
</ul>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'OptionGroup',
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.option-group {
|
|
&:first-child {
|
|
padding-top: 0 !important;
|
|
}
|
|
|
|
&:last-child {
|
|
padding-bottom: 0 !important;
|
|
}
|
|
}
|
|
</style>
|