Skip to content

Commit 761e754

Browse files
committed
Fix convention
1 parent ed33de6 commit 761e754

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/ModalsContainer.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
<div id="modals-container">
33
<modal
44
v-for="modal in modals"
5-
:key="modal.id"
65
v-bind="modal.modalAttrs"
6+
:key="modal.id"
77
v-on="modal.modalListeners"
88
@closed="remove(modal.id)"
99
>
1010
<component
11-
:is="modal.component"
1211
v-bind="modal.componentAttrs"
12+
:is="modal.component"
1313
v-on="modal.componentListeners"
1414
@close="$modal.hide(modal.modalAttrs.name, $event)"
1515
>

0 commit comments

Comments
 (0)