UNPKG

press-next

Version:

Vue3 组件库,支持 Composition API

54 lines (51 loc) 806 B
export const DIALOG_PROPS = { show: { type: Boolean, default: false, }, title: { type: String, default: '', required: false, }, content: { type: String, default: '', required: false, }, htmlContent: { type: String, default: '', }, confirmText: { type: String, default: '确定', required: false, }, cancelText: { type: String, default: '', required: false, }, subTip: { type: String, default: '', }, closeOnClickOverlay: { type: Boolean, default: true, }, htmlFilterClick: { type: Function, default: null, }, horizontal: { type: Boolean, default: false, }, zIndex: { type: Number, default: 100, }, }; export const DEFAULT_GP_DIALOG_ID = 'press-gp-dialog';