Attempting to implement Leader Line on VueJS has presented some challenges that have yet to be fully resolved online.
The installation of leader-line using npm was successful - npm install leader-line
Below is the code for the vuejs file:
HTML:
<div id="start">start</div>
<div id="end">end</div>
JavaScript:
import LeaderLine from 'leader-line'
const myLine = new LeaderLine(
document.getElementById('start'),
document.getElementById('end')
);
Despite this, an error message surfaced:
TypeError: leader_line__WEBPACK_IMPORTED_MODULE_9___default.a is not a constructor
Any assistance with this issue would be greatly appreciated. Thank you!