I'm currently developing a project with VueJS and the CoreUI admin template.
Is there a way I can change the title of the current page as shown on the CBreadcrumbRouter? The GitHub documentation mentions that the script typically displays meta.label followed by the router's name property. However, I haven't come across any options or instructions on how to customize this display directly from the content page. I want to show a different text using the call parameter. I've already attempted the following code without success:
this.$route.meta.label = 'bla';
Instead of displaying path / to / my / page
, it should show
path / to / my / {script defined page name}
.