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']
}
}
Source:stackexchange.com