diff --git a/src/components/DrawerInfo.vue b/src/components/DrawerInfo.vue index 42d65a67..126bac08 100644 --- a/src/components/DrawerInfo.vue +++ b/src/components/DrawerInfo.vue @@ -2,6 +2,8 @@ import { onMounted, ref, watch } from 'vue'; import AppBox from './app/AppBox.vue'; +import { Customer } from 'src/stores/customer/types'; + defineProps<{ title: string; category?: string; @@ -15,6 +17,8 @@ defineProps<{ submit?: (...args: unknown[]) => void; close?: (...args: unknown[]) => void; undo?: (...args: unknown[]) => void; + + data: Customer | undefined; }>(); const drawerOpen = defineModel('drawerOpen', {