- Client list

- Context menu
This commit is contained in:
Peter Papp
2021-04-22 07:36:52 +02:00
parent eae212ac5d
commit 4b0e4da013
23 changed files with 724 additions and 75 deletions

View File

@@ -7,6 +7,7 @@
<folder-icon v-if="icon === 'folder'" class="icon text-theme" size="21" />
<file-icon v-if="icon === 'file'" class="icon text-theme" size="21" />
<file-text-icon v-if="icon === 'file-text'" class="icon text-theme" size="21" />
<user-icon v-if="icon === 'user'" class="icon text-theme" size="21" />
</div>
<div class="text">
<span class="title">{{ title }}</span>
@@ -23,6 +24,7 @@ import {
ImageIcon,
VideoIcon,
FileIcon,
UserIcon,
} from "vue-feather-icons"
export default {
@@ -39,7 +41,8 @@ export default {
ImageIcon,
VideoIcon,
FileIcon,
},
UserIcon,
},
}
</script>