From b32e28ee1a0ffd2911c10576d24c9b6906342185 Mon Sep 17 00:00:00 2001 From: Philip Date: Wed, 23 Mar 2022 06:25:23 +0100 Subject: [PATCH] Added transition mode `default` According to the TypeScript interface [here](https://github.com/vuejs/core/blob/main/packages/runtime-core/src/components/BaseTransition.ts#L24) the default mode is `default`. This was missing from the docs. --- src/api/built-in-components.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/built-in-components.md b/src/api/built-in-components.md index 7c971a6d6d..d5c0b76e26 100644 --- a/src/api/built-in-components.md +++ b/src/api/built-in-components.md @@ -55,7 +55,7 @@ Provides animated transition effects to a **single** element or component. * Controls the timing sequence of leaving/entering transitions. * Default behavior is simultaneous. */ - mode?: 'in-out' | 'out-in' + mode?: 'in-out' | 'out-in' | 'default' /** * Whether to apply transition on initial render. * Default: false