This repository was archived by the owner on Mar 27, 2025. It is now read-only.
File tree 2 files changed +4
-4
lines changed
packages/bootstrap-vue-next/src/components
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 5
5
v-model =" modelValue"
6
6
class =" accordion-collapse"
7
7
v-bind =" $attrs"
8
- :aria-labelledby =" `heading ${computedId}`"
8
+ :aria-labelledby =" `${computedId}-heading `"
9
9
:tag =" tag"
10
10
:toggle =" toggle"
11
11
:horizontal =" horizontal"
14
14
v-on =" events"
15
15
>
16
16
<template #header =" {visible: toggleVisible , toggle: slotToggle } " >
17
- <component :is =" headerTag" :id =" `heading ${computedId}`" class =" accordion-header" >
17
+ <component :is =" headerTag" :id =" `${computedId}-heading `" class =" accordion-header" >
18
18
<button
19
19
class =" accordion-button"
20
20
:class =" {collapsed: !toggleVisible}"
Original file line number Diff line number Diff line change 21
21
role =" dialog"
22
22
:class =" computedClasses"
23
23
tabindex =" -1"
24
- aria-labelledby =" offcanvasLabel "
24
+ : aria-labelledby =" `${computedId}-offcanvas-label` "
25
25
data-bs-backdrop =" false"
26
26
v-bind =" $attrs"
27
27
@keyup.esc =" hide('esc')"
28
28
>
29
29
<template v-if =" lazyShowing " >
30
30
<div v-if =" !noHeaderBoolean" class =" offcanvas-header" :class =" headerClass" >
31
31
<slot name =" header" v-bind =" {visible: modelValueBoolean, placement, hide}" >
32
- <h5 id =" offcanvasLabel " class =" offcanvas-title" >
32
+ <h5 : id =" `${computedId}-offcanvas-label` " class =" offcanvas-title" >
33
33
<slot name =" title" >
34
34
{{ title }}
35
35
</slot >
You can’t perform that action at this time.
0 commit comments