Skip to content Skip to sidebar Skip to footer

How Can I Import Numeric.js To My Javascript File

I'm trying to use numeric.js to my javascript file in my Vue project. import * as numeric from '@/libs/numeric.js'; ... numeric.spline(dds, xys); Uncaught TypeError: _libs_numer

Solution 1:

Numeric.js should be installed through the npm like so:

npm install numeric

you can then easily import it:

import numericfrom @/libs/numeric';

Post a Comment for "How Can I Import Numeric.js To My Javascript File"