www.dextsolution.com
DEXTUPLOAD
X5
menu toggleVue.js Reference > DX5

DX5

Object

dextuploadx5-vue 0.0.1 or later

DX5 is a wrapper object for safely accessing the browser global dx5 object.

After a Vue component is created, use DX5.get(id) to obtain the X5 instance and call upload, download, or item control methods.

<script setup>
import { DX5 } from "dextuploadx5-vue";

function upload() {
  DX5.get("dext5")?.upload("AUTO");
}
</script>
Methods