We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19513da commit cc53b6dCopy full SHA for cc53b6d
src/components/BAccordion.vue
@@ -24,7 +24,7 @@ export default defineComponent({
24
}))
25
26
if (!props.free) {
27
- provide(injectionKey, `#${computedId.value}`)
+ provide(injectionKey, `${computedId.value}`)
28
}
29
30
return {
src/components/BAccordionItem.vue
@@ -18,7 +18,7 @@
18
:id="computedId"
19
class="accordion-collapse"
20
:visible="visible"
21
- :parent="parent"
+ :accordion="parent"
22
:aria-labelledby="`heading${computedId}`"
23
>
<div class="accordion-body">
0 commit comments