From 7e2f358692570be890bf11ccb16278ca50f4c729 Mon Sep 17 00:00:00 2001 From: Ben Hong Date: Wed, 1 Feb 2023 11:19:38 -0800 Subject: [PATCH] Revert "docs: fix Prop interface type error in example (#2191)" (#2200) This reverts commit dd57dce53f0d2d62c18a5ff4e89cfe9abfeb5137. --- src/guide/typescript/composition-api.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/guide/typescript/composition-api.md b/src/guide/typescript/composition-api.md index 83e9205257..69e98b67fe 100644 --- a/src/guide/typescript/composition-api.md +++ b/src/guide/typescript/composition-api.md @@ -40,14 +40,12 @@ You can use either type-based declaration OR runtime declaration, but you cannot We can also move the props types into a separate interface: ```vue - - ```