JavaScript - Code Example
exportCards() {
return this.$axois.get('spaces/'+this.space.uuid+'/cards/export', {responseType: 'blob'}).then(res => {
let url = URL.createObjectURL(res.data);
const link = document.createElement('a');
link.style.display = 'none';
link.href = url;
link.download = 'digital_cards_export.xlsx';
link.click();
}).catch(err => {
//Error message
})
},