await this.$axios({ url: 'apiurl', method: 'POST', responseType: 'blob', data: payload }).then(res => { const fileURL = URL.createObjectURL(res.data); window.open(fileURL); })