以axios为例 upload($event){ let form = new FormData(); form.append("file", $event.target.files[0]); this.$axios.post("http://xxx", form) }
以axios为例