是否可以在<v-navigation-drawer>中使用固定的<v-toolbar-title>
<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属性在浮动的导航抽屉中不起作用。
发布于 2021-06-27 01:24:13
您可以使用prepend
<v-navigation-drawer>
<template v-slot:prepend>
your title
</template>
<template v-slot:append>
your footer
</template>
</v-navigation-drawer>https://stackoverflow.com/questions/52429531
复制相似问题