Files
vuefilemanager/resources/js/components/Others/ListInfo.vue
2020-06-09 18:06:04 +02:00

17 lines
291 B
Vue

<template>
<ul class="list-info">
<slot></slot>
</ul>
</template>
<script>
export default {
name: 'ListInfo',
}
</script>
<style lang="scss" scoped>
@import '@assets/vue-file-manager/_variables';
@import '@assets/vue-file-manager/_mixins';
</style>