You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
367 B

3 months ago
  1. import { buildProps } from '../../../utils/vue/props/runtime.mjs';
  2. import { isArray } from '@vue/shared';
  3. const uploadDraggerProps = buildProps({
  4. disabled: {
  5. type: Boolean,
  6. default: false
  7. }
  8. });
  9. const uploadDraggerEmits = {
  10. file: (file) => isArray(file)
  11. };
  12. export { uploadDraggerEmits, uploadDraggerProps };
  13. //# sourceMappingURL=upload-dragger.mjs.map