| 1234567891011121314151617181920212223242526272829303132333435363738 |
- import { uploadBaseProps } from './upload.mjs';
- import { buildProps, definePropType } from '../../../utils/vue/props/runtime.mjs';
- import { NOOP } from '@vue/shared';
- const uploadContentProps = buildProps({
- ...uploadBaseProps,
- beforeUpload: {
- type: definePropType(Function),
- default: NOOP
- },
- onRemove: {
- type: definePropType(Function),
- default: NOOP
- },
- onStart: {
- type: definePropType(Function),
- default: NOOP
- },
- onSuccess: {
- type: definePropType(Function),
- default: NOOP
- },
- onProgress: {
- type: definePropType(Function),
- default: NOOP
- },
- onError: {
- type: definePropType(Function),
- default: NOOP
- },
- onExceed: {
- type: definePropType(Function),
- default: NOOP
- }
- });
- export { uploadContentProps };
- //# sourceMappingURL=upload-content.mjs.map
|