From 4129947d4e4d94d2cbbce471721f40fbb34ace7b Mon Sep 17 00:00:00 2001 From: DCloud_LXH <283700113@qq.com> Date: Thu, 16 Jun 2022 17:07:14 +0800 Subject: [PATCH] chore: navigator animationType default --- src/core/view/components/navigator/index.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core/view/components/navigator/index.vue b/src/core/view/components/navigator/index.vue index 90f4007f5..024e4ab62 100644 --- a/src/core/view/components/navigator/index.vue +++ b/src/core/view/components/navigator/index.vue @@ -92,7 +92,8 @@ export default { type: String, validator (value) { return !value || ~ANIMATION_TYPE_IN.concat(ANIMATION_TYPE_OUT).indexOf(value) - } + }, + default: '' }, animationDuration: { type: [String, Number], -- GitLab