Hi friends, I have encountered a problem. I am using Handsontable 13.1.0 and need to load around 500-1000 sheets, but only one sheet is displayed at a time, similar to the Excel scenario. However, all sheets are linked with HyperFormula. On my Windows device, it takes about 10 seconds to load all the sheets. How can I optimize this?
<div class="table-wrap">
<a-skeleton active :paragraph="{ rows: 4 }" :loading="workbookLoading">
<template v-for="worksheet in workbookStore.worksheets" :key="worksheet.id">
<HotTable
:worksheet="worksheet"
v-show="workbookStore.activeWorksheet?.code === worksheet.code"
/>
</template>
</a-skeleton>
</div>
const instance = new Handsontable(hotElement.value, {
...options,
...worksheet.value.conf,
});
hotStore.setInstance(worksheet.value.code, instance);