Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(VExpansionPanel): Fixed broken code example #19490

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
</v-expansion-panel>

<v-expansion-panel>
<v-expansion-panel-title v-slot="{ open }">
<v-expansion-panel-title v-slot="{ expanded }">
<v-row no-gutters>
<v-col class="d-flex justify-start" cols="4">
Location
Expand All @@ -50,7 +50,7 @@
>
<v-fade-transition leave-absolute>
<span
v-if="open"
v-if="expanded"
key="0"
>
Select trip destination
Expand Down Expand Up @@ -109,7 +109,7 @@
</v-expansion-panel>

<v-expansion-panel>
<v-expansion-panel-title v-slot="{ open }">
<v-expansion-panel-title v-slot="{ expanded }">
<v-row no-gutters>
<v-col class="d-flex justify-start" cols="4">
Start and end dates
Expand All @@ -119,7 +119,7 @@
cols="8"
>
<v-fade-transition leave-absolute>
<span v-if="open">When do you want to travel?</span>
<span v-if="expanded">When do you want to travel?</span>
<v-row
v-else
style="width: 100%"
Expand Down