0π
β
I think itβs not working because the Dropdown instance needs to be set on the trigger element, not the container. Change the "el" ref to the trigger buttonβ¦
<template>
<div class="dropdown">
<button
ref="el"
class="btn btn-primary dropdown-toggle"
type="button"
data-bs-toggle="dropdown"
aria-expanded="false"
>
Select...
</button>
<ul class="dropdown-menu">
<slot></slot>
</ul>
</div>
</template>
Source:stackexchange.com