[Vuejs]-How to instantly redirect the user to a new page via router when the user logs in succesfully(password, username are correct)

0๐Ÿ‘

โœ…

If You using vue-router, better to use programmatic navigation.

Link: https://router.vuejs.org/guide/essentials/navigation.html

if(loginConfirmed) {
    this.$router.push({ path: 'dashboard' });
}

Leave a comment