“Vue redireciona para rota” Respostas de código

Botão Clique em Redirecionar para outra página Vue

<button @click="goToHome()"> </button>

//inside the script section, define the function:
 methods:{
   goToHome(){
   this.$router.push('/home'); 
      }
  }

//if the route accepts params, you can also use
this.$router.push({name:'home', params: {id: '[paramdata]'}}); 
Grieving Gharial

Vue redireciona para rota

// Use this in a lifecycle method
this.$router.push('/login');
garzj

Redirecionar em Vue

this.$router.push({ name: 'routename' })
Badie96

Respostas semelhantes a “Vue redireciona para rota”

Perguntas semelhantes a “Vue redireciona para rota”

Mais respostas relacionadas para “Vue redireciona para rota” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código