21 lines
453 B
Vue
21 lines
453 B
Vue
<script setup>
|
|
import InvoiceInDescriptor from 'pages/InvoiceIn/Card/InvoiceInDescriptor.vue';
|
|
import InvoiceInSummary from './InvoiceInSummary.vue';
|
|
|
|
const $props = defineProps({
|
|
id: {
|
|
type: Number,
|
|
default: null,
|
|
},
|
|
});
|
|
</script>
|
|
<template>
|
|
<QPopupProxy>
|
|
<InvoiceInDescriptor
|
|
v-if="$props.id"
|
|
:id="$props.id"
|
|
:summary="InvoiceInSummary"
|
|
/>
|
|
</QPopupProxy>
|
|
</template>
|