In my development setup using webpack and vue-loader to build a Vue.js application, I have various .vue files for different components. Whenever I include the line:
import _ from 'lodash'
in the script
section of both ComponentA.vue
and ComponentB.vue
, I am curious whether this results in two distinct instances of lodash being imported or if it just imports a shared reference?