mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-06 02:33:48 +00:00
25 lines
330 B
Vue
25 lines
330 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>
|