[Vuejs]-How to load the component on loading the page using vue-router

1👍

Push the /other route in the router inside the mounted hook :

new Vue({
    router,
  el: '#app',
  
  mounted(){
  this.$router.push('/other')
  }
})

Leave a comment