使用iframe 導(dǎo)出
<Button type="primary" size="small" v-if="year.id" @click="handleExport">導(dǎo)出</Button>
<iframe id="file" style="display:none"></iframe>
handleExport () {
var dom=document.getElementById('file')
// 這里的url是指后臺的請求地址
dom.src= `url`
},