mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
21 lines
485 B
Vue
21 lines
485 B
Vue
<template>
|
|
<div>
|
|
<VueFolderIcon v-if="!item.data.attributes.isTeamFolder" />
|
|
<VueFolderTeamIcon v-if="item.data.attributes.isTeamFolder" style="width: 53px; height: 52px" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import VueFolderTeamIcon from './Icons/VueFolderTeamIcon'
|
|
import VueFolderIcon from './Icons/VueFolderIcon'
|
|
|
|
export default {
|
|
name: 'FolderIcon',
|
|
props: ['item'],
|
|
components: {
|
|
VueFolderTeamIcon,
|
|
VueFolderIcon,
|
|
},
|
|
}
|
|
</script>
|