export class ExportExcelUtil { static instance: ExportExcelUtil; static getInstance(): ExportExcelUtil { if (!this.instance) { this.instance = new ExportExcelUtil(); } return this.instance; } public async getExcel() { const exportExcel = import('@/core/utils/export-excel/export-excel'); return exportExcel; } }