Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

How to redirect Vue/Nuxt SPA Page automatically

Summery

I’m creating Vue/Nuxt application by SPA mode.
To generate /.dist file, I execute nuxt generate

pages
  ├ index.vue
  └ test.vue

I want to know how to redirect / to /test path by Nuxt.

What I trided

I tried middleware and module, but they do not work.

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

https://github.com/nuxt-community/redirect-module

>Solution :

One simple workaround is to use fetch hook in the index page to change rout to /test; Here is the code:

// index.vue
fetch() {
  this.$router.push('./test');
}
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading