I have a project using Aurelia as frontend framework and I’m trying to use Handsontable but I’m getting the following error :
_handsontable2.default is not a constructor
I did npm install handsontable
;
This is my code:
import Handsontable from 'handsontable;
const container = document.querySelector('#example');
const hot = new Handsontable(container, {
data: data,
});
For some reason it throws _handsontable2.default is not a constructor