是否可以在<v-toolbar-title>
中使用固定的<v-navigation-drawer>
?
<v-card class="d-inline-block elevation-12">
<v-navigation-drawer hide-overlay permanent stateless height="440" value="true">
<v-toolbar color="white" flat>
<v-toolbar-title>Name</v-toolbar-title>
我的目标是能够在抽屉中滚动,但工具栏仍位于顶部,但是inverted-scroll
和fixed
道具在浮动导航抽屉中不起作用。
答案 0 :(得分:0)
您可以使用前置槽
<v-navigation-drawer>
<template v-slot:prepend>
your title
</template>
<template v-slot:append>
your footer
</template>
</v-navigation-drawer>