Changes between Version 13 and Version 14 of UZ
- Timestamp:
- 2022.10.05 18:55:30 (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UZ
v13 v14 40 40 As you see nothing will appear in browser. Why? You need to provide some UI. To remain generic the component has no UI by itself. This allows it to be extremely flexible. You need to use //slots// and provide some CSS styles. To remain concise this step is demonstrated in the repository (source:/uz/src/UploadTest.vue). After creating the UI and navigating to proper URL you should see the uploader. 41 41 42 == Properties42 == Component properties 43 43 44 44 === target 45 45 46 Destination URL. It should handle //POST// requests. 47 46 48 === max-jobs 49 50 Maximum number of concurrent jobs. 47 51 48 52 === auto-start 49 53 54 Start automatically after adding files, i.e. without wait to add more files. 55 50 56 === auto-reset 51 57 58 Automatically back to //idle// state after uploading given files. 59 52 60 === keep-going 61 62 Do not abort on error(s) - upload all files that can be uploaded. 53 63 54 64 == Slots