From 9dccec8f2a488ae1921f83b2068bf8c297e15e84 Mon Sep 17 00:00:00 2001 From: b2nil Date: Fri, 25 Sep 2020 22:35:04 +0800 Subject: [PATCH] fix(curtain): closeBtnPosition default type error --- src/components/curtain/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/curtain/index.ts b/src/components/curtain/index.ts index e775017c..0b849553 100644 --- a/src/components/curtain/index.ts +++ b/src/components/curtain/index.ts @@ -11,7 +11,7 @@ const AtCurtain = defineComponent({ isOpened: Boolean, closeBtnPosition: { type: String as PropType, - default: 'bottom' as PropType + default: 'bottom' }, // 事件 onClose: {