Changes between Version 2 and Version 3 of UZ


Ignore:
Timestamp:
2022.10.03 18:03:02 (3 years ago)
Author:
js29a
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TabularUnified UZ

    v2 v3  
    2121== Basic component usage
    2222
     23The 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
     26import UploadZone from './UploadZone.vue';
     27}}}
     28
     29Then 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
    2336----
    2437