Files
vuefilemanager/resources/js/components/Others/ListInfo.vue
2022-02-01 12:21:38 +01:00

17 lines
277 B
Vue

<template>
<ul class="list-info">
<slot></slot>
</ul>
</template>
<script>
export default {
name: 'ListInfo',
}
</script>
<style lang="scss" scoped>
@import '../../../sass/vuefilemanager/variables';
@import '../../../sass/vuefilemanager/mixins';
</style>