Seeking assistance with downloading/exporting data to Excel using Tabulator (4.9) and Vue. Despite including SheetJS in my project as recommended by Tabulator's page, I am facing difficulties.
The error XLSX is not defined occurs when I use:
import 'xlsx/dist/xlsx.full.min.js'
this.tabulator.download('xlsx', 'data.xlsx')
Upon importing XLSX, the message "Download Error - No such download type found" is displayed:
import XLSX from 'xlsx/dist/xlsx.full.min.js'
this.tabulator.download(XLSX, 'data.xlsx')
I would appreciate any guidance on resolving this issue.
Thank you.