Skip to content

Commit

Permalink
docs(VExpansionPanels): fix broken code example (#19490)
Browse files Browse the repository at this point in the history
  • Loading branch information
captainlettuce committed Apr 8, 2024
1 parent 87d0dd7 commit 619c00e
Showing 1 changed file with 4 additions and 4 deletions.
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

0 comments on commit 619c00e

Please sign in to comment.