接收一段url,要直接把他转成blob使用

27 阅读1分钟
 this.$Axios({
        method: "get",
        responseType: "blob",
        url: this.url,
      }).then((res) => {
        console.log(res);
      });