create/get upload request backend

This commit is contained in:
Čarodej
2022-02-17 16:55:35 +01:00
parent 45a3b5415b
commit 6db8b0662a
15 changed files with 273 additions and 28 deletions
@@ -2,6 +2,7 @@
<div class="flex items-center justify-between px-6 pt-6 pb-6">
<div class="flex items-center">
<div class="mr-3">
<upload-cloud-icon v-if="icon === 'upload'" size="18" class="vue-feather text-theme" />
<corner-down-right-icon v-if="icon === 'move'" size="18" class="vue-feather text-theme" />
<share-icon v-if="icon === 'share'" size="18" class="vue-feather text-theme" />
<edit2-icon v-if="icon === 'edit'" size="18" class="vue-feather text-theme" />
@@ -23,6 +24,7 @@
<script>
import {
UploadCloudIcon,
CreditCardIcon,
KeyIcon,
UserPlusIcon,
@@ -39,6 +41,7 @@ export default {
name: 'PopupHeader',
props: ['title', 'icon'],
components: {
UploadCloudIcon,
CornerDownRightIcon,
CreditCardIcon,
UserPlusIcon,