In vuetify I use 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>
But I want to make it fixed, and not overlap with the vuerouter contents. How can I do that? I tried putting fixed
but it still overlaps.
Thanks