mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-18 00:02:15 +00:00
43 lines
1.2 KiB
Vue
43 lines
1.2 KiB
Vue
<template>
|
|
<div
|
|
class="sticky top-0 z-[19] block flex w-full items-center justify-between bg-white py-5 px-4 text-center dark:bg-dark-background lg:hidden"
|
|
>
|
|
<NavigationBar />
|
|
|
|
<!-- <div class="relative flex items-center">
|
|
<!–More Actions–>
|
|
<div class="relative">
|
|
<div
|
|
@click="showMobileNavigation"
|
|
class="absolute right-0 -mr-2 -translate-y-2/4 transform p-4"
|
|
>
|
|
<menu-icon size="17" />
|
|
</div>
|
|
</div>
|
|
</div>-->
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import TeamMembersPreview from '../Teams/Components/TeamMembersPreview'
|
|
import TeamMembersButton from '../Teams/Components/TeamMembersButton'
|
|
import { MenuIcon } from 'vue-feather-icons'
|
|
import NavigationBar from './NavigationBar'
|
|
|
|
export default {
|
|
name: 'MobileUploadRequestToolBar',
|
|
components: {
|
|
NavigationBar,
|
|
TeamMembersPreview,
|
|
TeamMembersButton,
|
|
MenuIcon,
|
|
},
|
|
methods: {
|
|
showMobileNavigation() {
|
|
this.$showMobileMenu('user-navigation')
|
|
this.$store.commit('DISABLE_MULTISELECT_MODE')
|
|
},
|
|
},
|
|
}
|
|
</script>
|