23 lines
451 B
Vue
23 lines
451 B
Vue
<script setup>
|
|
import OrderDescriptor from './OrderDescriptor.vue';
|
|
import OrderSummary from './OrderSummary.vue';
|
|
|
|
const $props = defineProps({
|
|
id: {
|
|
type: Number,
|
|
required: true,
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<QPopupProxy>
|
|
<OrderDescriptor
|
|
v-if="$props.id"
|
|
:id="$props.id"
|
|
:summary="OrderSummary"
|
|
data-key="OrderDescriptor"
|
|
/>
|
|
</QPopupProxy>
|
|
</template>
|