diff --git a/src/components/04_product-service/TotalProductCardComponent.vue b/src/components/04_product-service/TotalProductCardComponent.vue index 16fe0cc0..768da600 100644 --- a/src/components/04_product-service/TotalProductCardComponent.vue +++ b/src/components/04_product-service/TotalProductCardComponent.vue @@ -2,13 +2,25 @@ import { ref } from 'vue'; import AppBox from 'components/app/AppBox.vue'; const addedProduct = ref(false); + +defineProps<{ + title?: string; + code?: string; + dense?: boolean; + outlined?: boolean; + readonly?: boolean; + separator?: boolean; + typeProduct?: string; + price?: number; + process?: number; +}>();