0👍
✅
Try eager importing.
const dependency = () => import(
/* webpackChunkName: "login-chunk" */
/* webpackMode: "eager" */
'module in Login.vue'
).then(m => m.default || m);
Source:stackexchange.com