feat(NavBar): add @nav-bar-z-index less var

This commit is contained in:
陈嘉涵
2020-01-28 11:49:13 +08:00
parent 6f4c6f5aa6
commit a2d870ad8e
5 changed files with 7 additions and 8 deletions
+1 -4
View File
@@ -82,6 +82,7 @@ function NavBar(
NavBar.props = {
title: String,
fixed: Boolean,
zIndex: Number,
leftText: String,
rightText: String,
leftArrow: Boolean,
@@ -89,10 +90,6 @@ NavBar.props = {
type: Boolean,
default: true,
},
zIndex: {
type: Number,
default: 1,
},
};
export default createComponent<NavBarProps, NavBarEvents>(NavBar);