WIP
This commit is contained in:
parent
ac555a0146
commit
af12512de9
|
@ -14,6 +14,10 @@ const $props = defineProps({
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
|
||||||
const transferInvoiceDialogRef = ref();
|
const transferInvoiceDialogRef = ref();
|
||||||
|
|
||||||
|
const showInvoicePdf = () => {};
|
||||||
|
|
||||||
|
const showInvoiceCsv = () => {};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
@ -27,10 +31,10 @@ const transferInvoiceDialogRef = ref();
|
||||||
</QItemSection>
|
</QItemSection>
|
||||||
<QMenu anchor="top end" self="top start">
|
<QMenu anchor="top end" self="top start">
|
||||||
<QList>
|
<QList>
|
||||||
<QItem v-ripple clickable>
|
<QItem v-ripple clickable @click="showInvoicePdf()">
|
||||||
<QItemSection>{{ t('As PDF') }}</QItemSection>
|
<QItemSection>{{ t('As PDF') }}</QItemSection>
|
||||||
</QItem>
|
</QItem>
|
||||||
<QItem v-ripple clickable>
|
<QItem v-ripple clickable @click="showInvoiceCsv()">
|
||||||
<QItemSection>{{ t('As CSV') }}</QItemSection>
|
<QItemSection>{{ t('As CSV') }}</QItemSection>
|
||||||
</QItem>
|
</QItem>
|
||||||
</QList>
|
</QList>
|
||||||
|
|
Loading…
Reference in New Issue