mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-06 02:33:48 +00:00
27 lines
524 B
Vue
27 lines
524 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> |