nn
Size: a a a
nn
nn
nn
VS
exportProducts() {
axios({
url: '/admin/excel/export',
method: 'GET',
responseType: 'blob', // important
}).then(
response => {
const url =
window.URL.createObjectURL(new
Blob([
response.data]));
const link =
document.createElement('a');
link.href = url;
link.setAttribute('download', 'export.xlsx');
document.body.appendChild(link);
link.click();
}).catch(
error => {
console.log(
error.response);
if (
error.response) this.$root.notify(
error.response.data);
}).finally(() => this.refreshing = false);
},
V
exportProducts() {
axios({
url: '/admin/excel/export',
method: 'GET',
responseType: 'blob', // important
}).then(
response => {
const url =
window.URL.createObjectURL(new
Blob([
response.data]));
const link =
document.createElement('a');
link.href = url;
link.setAttribute('download', 'export.xlsx');
document.body.appendChild(link);
link.click();
}).catch(
error => {
console.log(
error.response);
if (
error.response) this.$root.notify(
error.response.data);
}).finally(() => this.refreshing = false);
},
VS
VS
С
img -> image
subPriceContent -> currency
или unit
А
img -> image
subPriceContent -> currency
или unit
UA
PC
PC