Skip to content

Commit e2e6789

Browse files
committed
debug
1 parent 2d4f67e commit e2e6789

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

app/components/example/multi-drawer.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,15 @@
1212
@tap="close()"
1313
/>
1414

15-
<template v-for="side in computedSidesEnabled">
15+
<template v-for="(side,index) in computedSidesEnabled">
1616
<!-- Drawer Content -->
1717
<GridLayout
1818
@layoutChanged="onDrawerLayoutChange(side)"
1919
@tap="noop"
2020
@pan="onDrawerPan(side, $event)"
2121
:ref="`${side}Drawer`"
2222
:style="computedDrawerStyle(side)"
23+
:key="index"
2324
>
2425
<slot :name="side" />
2526
</GridLayout>
@@ -28,6 +29,7 @@
2829
v-show="computedShowSwipeOpenTrigger(side)"
2930
v-bind="computedSwipeOpenTriggerProperties(side)"
3031
@pan="onOpenTriggerPan(side, $event)"
32+
:key="index"
3133
/>
3234
</template>
3335
</GridLayout>

0 commit comments

Comments
 (0)