mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-19 16:32:15 +00:00
45 lines
1.4 KiB
Vue
45 lines
1.4 KiB
Vue
<template>
|
|
<MenuMobile name="invoice-create">
|
|
<MenuMobileGroup>
|
|
<OptionGroup>
|
|
<Option @click.native="createInvoice('regular-invoice')" :title="$t('in.create.regular_invoice')" icon="file-plus" is-hover-disabled="true" />
|
|
<Option @click.native="createInvoice('advance-invoice')" :title="$t('in.create.advance_invoice')" icon="clock" is-hover-disabled="true" />
|
|
</OptionGroup>
|
|
<OptionGroup>
|
|
<Option @click.native="createClient" :title="$t('in.create.client')" icon="user-plus" is-hover-disabled="true" />
|
|
</OptionGroup>
|
|
</MenuMobileGroup>
|
|
</MenuMobile>
|
|
</template>
|
|
|
|
<script>
|
|
import MenuMobileGroup from '@/components/Mobile/MenuMobileGroup'
|
|
import OptionGroup from '@/components/FilesView/OptionGroup'
|
|
import MenuMobile from '@/components/Mobile/MenuMobile'
|
|
import Option from '@/components/FilesView/Option'
|
|
import {mapGetters} from 'vuex'
|
|
|
|
export default {
|
|
name: 'InvoiceFilterMobile',
|
|
components: {
|
|
MenuMobileGroup,
|
|
OptionGroup,
|
|
MenuMobile,
|
|
Option,
|
|
},
|
|
computed: {
|
|
...mapGetters([
|
|
'homeDirectory'
|
|
]),
|
|
},
|
|
methods: {
|
|
createInvoice(type) {
|
|
this.$router.push({name: 'CreateInvoice', query: {type: type}})
|
|
},
|
|
createClient() {
|
|
this.$router.push({name: 'CreateClient'})
|
|
},
|
|
}
|
|
}
|
|
</script>
|