async exportdata1 () {
const res = await this.$axios.get('url', { responseType: 'blob' })
const blob = new Blob([res.data], { type: 'application/vnd.ms-excel' })
const objectUrl = URL.createObjectURL(blob)
window.location.href = objectUrl
}
async exportdata1 () {
const res = await this.$axios.get('url', { responseType: 'blob' })
const blob = new Blob([res.data], { type: 'application/vnd.ms-excel' })
const objectUrl = URL.createObjectURL(blob)
window.location.href = objectUrl
}
6997

被折叠的 条评论
为什么被折叠?