Skip to content
This repository has been archived by the owner on Dec 6, 2021. It is now read-only.

Commit

Permalink
fix(curtain): closeBtnPosition default type error
Browse files Browse the repository at this point in the history
  • Loading branch information
b2nil committed Sep 25, 2020
1 parent 3c5c109 commit 9dccec8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/curtain/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const AtCurtain = defineComponent({
isOpened: Boolean,
closeBtnPosition: {
type: String as PropType<AtCurtainProps['closeBtnPosition']>,
default: 'bottom' as PropType<AtCurtainProps['closeBtnPosition']>
default: 'bottom'
},
// 事件
onClose: {
Expand Down

0 comments on commit 9dccec8

Please sign in to comment.