Changes between Version 2 and Version 3 of UZ
- Timestamp:
- 2022.10.03 18:03:02 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TabularUnified UZ
v2 v3 21 21 == Basic component usage 22 22 23 The first thing you need to do is to import the component and create an instance of it. Place the following line in your code - be careful to specifiy correct relative component path: 24 25 {{{#!typescript 26 import UploadZone from './UploadZone.vue'; 27 }}} 28 29 Then at your template code instantiate it. You will have to specify correct //target upload URL//. Endpoint specified here should handle POST requests. 30 31 {{{#!twig 32 <component :is='UploadZone' target='http://...'> 33 </component> 34 }}} 35 23 36 ---- 24 37