hy-app
Version:
修复上传提示功能
26 lines (23 loc) • 525 B
text/typescript
import type IProps from './typing'
import { ColorConfig } from '../../config'
const defaultProps: IProps = {
modelValue: false,
title: '',
content: '',
confirmText: '确认',
cancelText: '取消',
showConfirmButton: true,
showCancelButton: false,
confirmColor: '',
cancelColor: '',
buttonReverse: false,
zoom: true,
round: 16,
asyncClose: false,
closeOnClickOverlay: false,
negativeTop: 0,
width: '550rpx',
confirmButtonShape: '',
contentTextAlign: 'left',
}
export default defaultProps