vue-upload-component
vue-upload-component copied to clipboard
add missing proptype for 'drop' property
This PR is to add the type checking for property drop
. This should help adding the ability of drag and drop with a short declaration instead of a full declaration (same as property drop-directory
).
Without the type, we have to define :drop="true"
in order to make it works.
Before adding PropType for property drop
After adding PropType for property drop