mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-19 16:32:15 +00:00
24 lines
556 B
Vue
24 lines
556 B
Vue
<template>
|
|
<MenuMobile name="invoice-sorting">
|
|
<MenuMobileGroup>
|
|
<InvoiceSortingOptions />
|
|
</MenuMobileGroup>
|
|
</MenuMobile>
|
|
</template>
|
|
|
|
<script>
|
|
import InvoiceSortingOptions from '@/Oasis/Invoices/components/InvoiceSortingOptions'
|
|
import MenuMobileGroup from '@/components/Mobile/MenuMobileGroup'
|
|
import MenuMobile from '@/components/Mobile/MenuMobile'
|
|
|
|
export default {
|
|
name: 'InvoiceSortingMobile',
|
|
components: {
|
|
InvoiceSortingOptions,
|
|
MenuMobileGroup,
|
|
MenuMobile,
|
|
Option,
|
|
},
|
|
}
|
|
</script>
|