mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-18 00:02:15 +00:00
26 lines
442 B
Vue
26 lines
442 B
Vue
<template>
|
|
<div class="content-group">
|
|
<TextLabel>{{ title }}</TextLabel>
|
|
<slot></slot>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import TextLabel from '@/components/Others/TextLabel'
|
|
|
|
export default {
|
|
name: 'ContentGroup',
|
|
props: ['title'],
|
|
components: {
|
|
TextLabel,
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
|
|
.content-group {
|
|
margin-bottom: 30px;
|
|
}
|
|
</style>
|