added CreateTeamFolderPopup.vue

This commit is contained in:
Peter Papp
2021-08-19 10:42:46 +02:00
parent 1d569f13c2
commit 58b7e6d584
9 changed files with 611 additions and 5 deletions

View File

@@ -5,6 +5,7 @@
<share-icon v-if="icon === 'share'" size="17" class="title-icon text-theme dark-text-theme" />
<edit2-icon v-if="icon === 'edit'" size="17" class="title-icon text-theme dark-text-theme" />
<key-icon v-if="icon === 'key'" size="17" class="title-icon text-theme dark-text-theme" />
<users-icon v-if="icon === 'users'" size="17" class="title-icon text-theme dark-text-theme" />
</div>
<div class="label">
<h1 class="title">{{ title }}</h1>
@@ -14,7 +15,7 @@
</template>
<script>
import {KeyIcon, CornerDownRightIcon, LinkIcon, XIcon, Edit2Icon, ShareIcon} from 'vue-feather-icons'
import {KeyIcon, CornerDownRightIcon, LinkIcon, XIcon, Edit2Icon, ShareIcon, UsersIcon} from 'vue-feather-icons'
import {events} from '/resources/js/bus'
export default {
@@ -24,6 +25,7 @@
],
components: {
CornerDownRightIcon,
UsersIcon,
ShareIcon,
Edit2Icon,
LinkIcon,