Skip to content
This repository was archived by the owner on Mar 27, 2025. It is now read-only.

Commit 6712e3f

Browse files
authored
Merge pull request bootstrap-vue-next#1431 from asika32764/dropdown-docs
docs: Correct Dropdown start & end props
2 parents 47cdb47 + 974e798 commit 6712e3f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

apps/docs/src/docs/components/dropdown.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -98,20 +98,20 @@ Dropdown supports various positioning such as left and right aligned, dropdown a
9898

9999
### Menu alignment
100100

101-
The dropdown menu can either be _start_ aligned (default) or _end_ aligned to the button above it. To have the dropdown aligned on the _end_, set the `alignEnd` prop.
101+
The dropdown menu can either be _start_ aligned (default) or _end_ aligned to the button above it. To have the dropdown aligned on the _end_, set the `end` prop.
102102

103103
<HighlightCard>
104104
<BDropdown v-model="show4" text="Default Alignment" variant="primary" class="me-2">
105105
<BDropdownItem href="#">Action</BDropdownItem>
106106
<BDropdownItem href="#">Another action</BDropdownItem>
107107
<BDropdownItem href="#">Something else here</BDropdownItem>
108108
</BDropdown>
109-
<BDropdown v-model="show5" alignStart text="Start Alignment" variant="primary" class="me-2">
109+
<BDropdown v-model="show5" start text="Start Alignment" variant="primary" class="me-2">
110110
<BDropdownItem href="#">Action</BDropdownItem>
111111
<BDropdownItem href="#">Another action</BDropdownItem>
112112
<BDropdownItem href="#">Something else here</BDropdownItem>
113113
</BDropdown>
114-
<BDropdown v-model="show6" alignEnd text="End Align" variant="primary" class="me-2">
114+
<BDropdown v-model="show6" end text="End Align" variant="primary" class="me-2">
115115
<BDropdownItem href="#">Action</BDropdownItem>
116116
<BDropdownItem href="#">Another action</BDropdownItem>
117117
<BDropdownItem href="#">Something else here</BDropdownItem>
@@ -126,13 +126,13 @@ The dropdown menu can either be _start_ aligned (default) or _end_ aligned to th
126126
<BDropdownItem href="#">Something else here</BDropdownItem>
127127
</BDropdown>
128128
129-
<BDropdown v-model="show2" alignStart text="Start Alignment" variant="primary">
129+
<BDropdown v-model="show2" start text="Start Alignment" variant="primary">
130130
<BDropdownItem href="#">Action</BDropdownItem>
131131
<BDropdownItem href="#">Another action</BDropdownItem>
132132
<BDropdownItem href="#">Something else here</BDropdownItem>
133133
</BDropdown>
134134
135-
<BDropdown v-model="show3" alignEnd text="End Align" variant="primary">
135+
<BDropdown v-model="show3" end text="End Align" variant="primary">
136136
<BDropdownItem href="#">Action</BDropdownItem>
137137
<BDropdownItem href="#">Another action</BDropdownItem>
138138
<BDropdownItem href="#">Something else here</BDropdownItem>

0 commit comments

Comments
 (0)