UNPKG

mand-mobile

Version:

A Vue.js 2.0 Mobile UI Toolkit

27 lines (25 loc) 517 B
import {t} from '../../_locale' import popupMixin from '../../popup/mixins' import popupTitleBarMixin from '../../popup/mixins/title-bar' export default { mixins: [popupMixin, popupTitleBarMixin], props: { isView: { type: Boolean, default: false, }, okText: { default: t('md.picker.confirm'), }, cancelText: { default: t('md.picker.cancel'), }, lineHeight: { type: Number, }, keepIndex: { type: Boolean, default: false, }, }, }