Let's say there is component ComponentA and I am importing libA in it.
import libA from 'libA'
and libA needs libB loaded.
it works with If I load them in html:
<script url='libB url'/>
<script url='libA url'/>
But I'd like to import it in ComponentA.
I am new on ES6, webpack, babel, vue and components.
Any help would be appreciated!