mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-22 09:32:14 +00:00
18 lines
289 B
Vue
18 lines
289 B
Vue
<template>
|
|
<div>
|
|
<VueFolderIcon v-if="!item.data.attributes.isTeamFolder" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import VueFolderIcon from './VueFolderIcon'
|
|
|
|
export default {
|
|
name: 'FolderIcon',
|
|
props: ['item'],
|
|
components: {
|
|
VueFolderIcon,
|
|
},
|
|
}
|
|
</script>
|