[Vuejs]-How to manipulate routes if the page is visited first?

0👍

You can check window.history.length property. If it is 1, you are on the first page. Also,

const routes = [
 {
   path: '/',
   redirect: 'dashboard'
 }, 
 ...
]

is the best way to configure initial redirect with Vue Router.

Leave a comment