Changes between Version 11 and Version 12 of UZ
- Timestamp:
- 2022.10.04 09:34:43 (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UZ
v11 v12 3 3 == TL;DR 4 4 5 `git clone https://github.com/js29a/uz.git` or grab source:/uz/src/UploadZone.vue @cc1db11 and source:/uz/src/UploadTest.vue@cc1db115 `git clone https://github.com/js29a/uz.git` or grab source:/uz/src/UploadZone.vue and source:/uz/src/UploadTest.vue 6 6 7 7 == Aim of this article … … 38 38 }}} 39 39 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 @cc1db11). After creating the UI and navigating to proper URL you should see the uploader.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 42 == Properties