UNPKG

press-ui

Version:

简单、易用的跨端组件库,兼容 Vue2 和 Vue3,同时支持 uni-app和普通 Vue 项目

26 lines (21 loc) 514 B
import { addUnit } from '../common/utils/add-unit'; import { style } from '../common/utils/style'; function containerStyle(data) { return style({ height: data.fixed ? addUnit(data.height) : '', 'z-index': data.zIndex, }); } function wrapStyle(data) { return style({ transform: data.transform ? `translate3d(0, ${data.transform}px, 0)` : '', top: data.fixed ? addUnit(data.offsetTop) : '', 'z-index': data.zIndex, }); } export default { containerStyle, wrapStyle, };