[Vuejs]-Importing a JavaScript class into a Vue single file component using Laravel Mix

0👍

You should import your class inside your component code using the following syntax :

 import TimeRangeConverter from './TimeRangeConverter';

Leave a comment