feat(Overlay): add @overlay-z-index less var

This commit is contained in:
陈嘉涵
2020-01-28 11:54:11 +08:00
parent 7609389623
commit 95d19f70d1
6 changed files with 10 additions and 11 deletions
+1 -4
View File
@@ -57,13 +57,10 @@ function Overlay(
Overlay.props = {
show: Boolean,
zIndex: [Number, String],
duration: [Number, String],
className: null as any,
customStyle: Object,
zIndex: {
type: [Number, String],
default: 1,
},
};
export default createComponent<OverlayProps, OverlayEvents>(Overlay);