[Vuejs]-Is it Possible do a dynamical title in the a navbar?

0👍

Yes it is very possible to have a dynamic title

you can do it through computed properties and make an api call in each page change to retrieve the title

computed:{
   title(){
     return this.$store.getters['getTitle']
    }
}

Leave a comment