Skip to content
This repository was archived by the owner on Jan 9, 2022. It is now read-only.

Commit 171f607

Browse files
committed
feat: add onClose to default GDialog component
1 parent 28c3c4f commit 171f607

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

packages/dialog/src/components/GDialog.vue

+3-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
:background="background"
3131
:border-radius="borderRadius"
3232
>
33-
<slot />
33+
<slot :onClose="onClose" />
3434
</GDialogContent>
3535
</div>
3636
</Transition>
@@ -214,7 +214,6 @@ export default defineComponent({
214214
}
215215
216216
return {
217-
onClickOutside,
218217
activatedOnce,
219218
activeZIndex,
220219
isActive,
@@ -224,6 +223,8 @@ export default defineComponent({
224223
contentFrame,
225224
overlay,
226225
activatorAttrs,
226+
onClickOutside,
227+
onClose,
227228
}
228229
},
229230
})

0 commit comments

Comments
 (0)