[Vuejs]-Problem with loading direct link – Vue single page app

1👍

Are you using lazy loading in your app? If not, Vue Router will try to load all pages when the site is first opened.

You can see browser’s console on network section

If you see that the files of all pages are loaded when the site is first opened, you are not using lazy loading.

That’s all I can think of from the information you provided, I hope it helps.

Vue Router Lazy Loading

👤Mocha_

Leave a comment