Within my Vuetify app, I've implemented a toolbar:
<v-toolbar dark color="primary">
<v-toolbar-side-icon @click.stop="drawer.drawer = !drawer.drawer"></v-toolbar-side-icon>
<v-toolbar-title>{{drawer.title}}</v-toolbar-title>
</v-toolbar>
<router-view v-bind:page="pageData"></router-view>
However, I'm facing an issue with the toolbar overlapping the Vue Router contents. I've tried adding fixed
but it hasn't resolved the problem.
Any suggestions on how I can make the toolbar fixed without overlapping?