Home > database >  How to redirect Vue/Nuxt SPA Page automatically
How to redirect Vue/Nuxt SPA Page automatically

Time:01-16

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.

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

CodePudding user response:

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');
}
  •  Tags:  
  • Related