Skip to content

Commit d94ac32

Browse files
fix: change the order of props
1 parent 3e6fcbc commit d94ac32

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

components/pages/cases/design/quiz/dialog-card.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ v-card.dialog-card.rounded.overflow-hidden(v-box-shadow='6')
33
v-card-title {{ content.title }}
44
v-card-subtitle {{ formatDate(content.created) }}
55
v-dialog(
6-
fullscreen,
76
v-model='dialog',
7+
fullscreen,
88
hide-overlay,
99
transition='dialog-bottom-transition'
1010
)
@@ -35,15 +35,15 @@ v-card.dialog-card.rounded.overflow-hidden(v-box-shadow='6')
3535
@click='step--',
3636
@keyup.left='step--',
3737
@keyup.right='step++'
38-
) {{ $tc("events.prev", 0) }}
38+
) {{ $tc('events.prev', 0) }}
3939
v-btn(
4040
:disabled='step === content.section.length',
4141
depressed,
4242
color='primary',
4343
@click='step++',
4444
@keyup.left='step--',
4545
@keyup.right='step++'
46-
) {{ $tc("events.next", 0) }}
46+
) {{ $tc('events.next', 0) }}
4747

4848
v-window(v-model='step', vertical)
4949
v-window-item(

0 commit comments

Comments
 (0)