Replies: 1 comment
-
Looks fairly simple. Something like: <b-dropdown text="Dropdown">
<b-dropdown-text>Header</b-dropdown-text>
<li style="max-height: 100px; overflow-y: auto;">
<ul style="list-style: none; padding-inline-start: 0">
<b-dropdown-item v-for="i in 10">Item {{ i }}</b-dropdown-item>
</ul>
</li>
<b-dropdown-text>Footer</b-dropdown-text>
</b-dropdown> |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I need to add a footer to a b-dropdown. Something similar to what Kendo has implemented(https://www.telerik.com/kendo-vue-ui/components/dropdowns/multiselect/custom-rendering/#toc-headers-and-footers). Seems like it would be fairly simple to add slots for these but beyond that, does anyone have a way to do it with just CSS?
Beta Was this translation helpful? Give feedback.
All reactions