mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
23 lines
493 B
Vue
23 lines
493 B
Vue
<template>
|
|
<MenuMobile name="file-sorting">
|
|
<MenuMobileGroup>
|
|
<FileSortingOptions />
|
|
</MenuMobileGroup>
|
|
</MenuMobile>
|
|
</template>
|
|
|
|
<script>
|
|
import FileSortingOptions from './FileSortingOptions'
|
|
import MenuMobileGroup from '../Mobile/MenuMobileGroup'
|
|
import MenuMobile from '../Mobile/MenuMobile'
|
|
|
|
export default {
|
|
name: 'FilterSortingMobile',
|
|
components: {
|
|
FileSortingOptions,
|
|
MenuMobileGroup,
|
|
MenuMobile,
|
|
},
|
|
}
|
|
</script>
|