From 04fc3675688b6126f2f8c417341deeb928c0978f Mon Sep 17 00:00:00 2001 From: Eugen Istoc Date: Mon, 10 Mar 2025 10:49:22 -0400 Subject: [PATCH] docs(migration): fix typo (#3516) --- docs/content/1.getting-started/2.migration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/1.getting-started/2.migration.md b/docs/content/1.getting-started/2.migration.md index 30705228..4c3deec7 100644 --- a/docs/content/1.getting-started/2.migration.md +++ b/docs/content/1.getting-started/2.migration.md @@ -459,7 +459,7 @@ Some important differences: - The `useOverlay` composable is now used to create overlay instances - Overlays that are opened, can be awaited for their result - Overlays can no longer be closed using `modal.close()` or `slideover.close()`, rather, they close automatically: either when a `closed` event is fired explicitly from the opened component OR when the overlay closes itself (clicking on backdrop, pressing the ESC key, etc) -- To capture the return value in the parent component you explictly emit a `closed` event with the desired value +- To capture the return value in the parent component you must explictly emit a `closed` event with the desired value ```diff