Looking at the docs
https://bootstrap-vue.org/docs/components/dropdown#button-content
I made an example that uses b-dropdown:
https://codesandbox.io/s/6lhk6?file=/src/components/GenericItem.vue
but in the component,
<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>
renders as:
Why isn't styling applied?
