Files
vuefilemanager/resources/js/Oasis/Invoices/components/InvoiceSortingMobile.vue
Peter Papp e8ca132a8b - Invoice sorting refactored
- Frontend build
2021-05-11 10:57:30 +02:00

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>