press-ui
Version:
简单、易用的跨端组件库,兼容 Vue2 和 Vue3,同时支持 uni-app和普通 Vue 项目
21 lines (18 loc) • 318 B
JavaScript
import { style } from '../common/utils/style';
function barStyle({
zIndex,
safeAreaInsetTop,
statusBarHeight,
customStyle,
}) {
return style([
{
'z-index': zIndex,
'padding-top': safeAreaInsetTop ? `${statusBarHeight}px` : 0,
},
customStyle,
]);
}
export default {
barStyle,
};