diff --git a/src/pages/05_quotation/ProductServiceForm.vue b/src/pages/05_quotation/ProductServiceForm.vue index f5bc6ade..a940bff1 100644 --- a/src/pages/05_quotation/ProductServiceForm.vue +++ b/src/pages/05_quotation/ProductServiceForm.vue @@ -39,6 +39,7 @@ const { data: config } = storeToRefs(configStore); const prop = defineProps<{ agentPrice: boolean; + nodesFormOutput?: Node[]; }>(); const emit = defineEmits<{ @@ -85,7 +86,7 @@ const priceDisplay = computed(() => ({ onMounted(configStore.getConfig); -const nodes = ref([]); +const nodes = defineModel('nodes', { required: true, default: [] }); const productServiceCard = ref<{ service: Record[]; product: Record[];