From 2eacb07ac61810b618e142dc339bce119a646287 Mon Sep 17 00:00:00 2001 From: rca Date: Mon, 22 Jul 2024 05:59:36 +0900 Subject: [PATCH] =?UTF-8?q?=E3=83=81=E3=82=A7=E3=83=83=E3=82=AF=E3=83=9C?= =?UTF-8?q?=E3=83=83=E3=82=AF=E3=82=B9=E3=81=AE=E7=8A=B6=E6=85=8B=E3=82=92?= =?UTF-8?q?emit=E3=81=A7=E8=A6=AA=E3=81=AB=E3=83=90=E3=82=B1=E3=83=84?= =?UTF-8?q?=E3=83=AA=E3=83=AC=E3=83=BC=E3=81=99=E3=82=8B=E3=82=88=E3=81=86?= =?UTF-8?q?=E3=81=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/HistoryWrappedComponent.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/HistoryWrappedComponent.vue b/src/components/HistoryWrappedComponent.vue index b6d9b56..6e9606e 100644 --- a/src/components/HistoryWrappedComponent.vue +++ b/src/components/HistoryWrappedComponent.vue @@ -16,9 +16,10 @@ interface Props { } const props = defineProps(); +const emit = defineEmits(['containPaid:checked']); const handleContainPaidCheckbox = (value: boolean) => { - console.log(value); + emit('containPaid:checked', value); };