UNPKG

press-ui

Version:

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

25 lines (22 loc) 486 B
import { t } from '../locale'; export const pickerProps = { title: { type: String, default: '' }, showToolbar: { type: Boolean, default: false }, loading: { type: Boolean, default: false }, cancelButtonText: { type: String, default: t('picker.cancel'), }, confirmButtonText: { type: String, default: t('picker.confirm'), }, visibleItemCount: { type: Number, default: 6, }, itemHeight: { type: [Number, String], default: 44, }, };