In router, some pages that are loaded later in the app, I try to load like this for webpack optimization.
const HomePage = resolve => require(['./HomePage.vue'], resolve);
Instead of
const HomePage from './HomePage.vue';
These pages work but just not the first time they are accessed. Any idea how I could fix this?
Probably useful for not just me!
In router, some pages that are loaded later in the app, I try to load like this for webpack optimization.
const HomePage = resolve => require(['./HomePage.vue'], resolve);
Instead ofconst HomePage from './HomePage.vue';
These pages work but just not the first time they are accessed. Any idea how I could fix this? Probably useful for not just me!