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