From 50ed9559f40d1c1c64cec16cfc3c555ca92cc999 Mon Sep 17 00:00:00 2001 From: Net <93821485+somnetsak123@users.noreply.github.com> Date: Fri, 7 Jun 2024 18:03:17 +0700 Subject: [PATCH] =?UTF-8?q?feat:=20=E0=B8=A3=E0=B8=B1=E0=B8=9A=20definePro?= =?UTF-8?q?ps=20data?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/DrawerInfo.vue | 4 ++++ 1 file changed, 4 insertions(+) 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', {