press-ui
Version:
简单、易用的跨端组件库,兼容 Vue2 和 Vue3,同时支持 uni-app和普通 Vue 项目
20 lines (17 loc) • 334 B
JavaScript
import { newProps } from '../press-popup/computed';
export const PRESS_POPUP_CELL_PROPS = [
'showTitle',
'closeIcon',
'arrowIcon',
'title',
'button',
'borderButton',
'zIndex',
'popupClass',
'closeOnClickOverlay',
'customStyle',
]
.reduce((acc, key) => {
acc[key] = newProps[key];
return acc;
}, {});