Recently, I encountered an issue while using v-toolbar in my vue app. Despite my efforts, I couldn't find a way to split the title into multiple lines on small screens. Currently, it displays as "Secti...." on smaller devices. Can anyone assist me with resolving this problem?
Section
One
Organisation
Any help or guidance would be greatly appreciated. Thank you!
<v-toolbar dense fixed scroll-off-screen>
<v-layout row wrap>
<v-flex xs4 md4>
<v-toolbar-title><a>Section One Organisation</a></v-toolbar-title>
</v-flex>
<v-flex xs4 md4>
<v-toolbar-title><a>Section Two Contact</a></v-toolbar-title>
</v-flex>
<v-flex xs4 md4>
<v-toolbar-title><a>Section Three Location</a></v-toolbar-title>
</v-flex>
</v-layout>
</v-toolbar>