【发布时间】:2021-09-17 09:44:05
【问题描述】:
查看文档
https://bootstrap-vue.org/docs/components/dropdown#button-content
我做了一个使用b-dropdown的例子:
https://codesandbox.io/s/6lhk6?file=/src/components/GenericItem.vue
但在组件中,
<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>
呈现为:
为什么不应用样式?
【问题讨论】:
标签: javascript css vue.js vuejs2 bootstrap-vue