我在Asset文件夹名称xyz.png上有一张图片
在组件文件夹中,我有一个名为helloworld.vue的文件,其中包含一个名为上传的按钮
当用户单击上载按钮时,我需要将xyz.png发布到api。
<template>
<button @click="upload">upload</button>
</template>
和功能
upload(){
var img = require("../assets/xyz.png");( I have to load the image properly here )
const fd = new FormData();
fd.append("file", img);
//here I am posting the data to api with header
}