After reviewing the documentation, I created a sample example utilizing the b-dropdown
component:
You can view the example here: https://codesandbox.io/s/6lhk6?file=/src/components/GenericItem.vue
However, when I implemented the component in the code:
<template>
<div>
<b-dropdown id="dropdown-1" text="Item or Category" class="m-md-2">
<b-dropdown-item>Edit Name</b-dropdown-item>
<b-dropdown-item>Delete</b-dropdown-item>
</b-dropdown>
</div>
</template>
The styling was not being applied as expected, resulting in rendering issues:
https://i.sstatic.net/joeqs.png
I'm having trouble understanding why the styling isn't working. Can someone provide some insight?