Skip to content

Commit 9a9e77a

Browse files
committed
Minor fixes
1 parent ca1014c commit 9a9e77a

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

examples/support-page/Example.vue

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,13 @@
1010
v-bind:progressbar="false"
1111
v-bind:standalone="true"
1212
>
13-
<question v-for="(question, index) in questions" v-bind="question" v-bind:key="'m' + index" v-model="question.model"></question>
13+
<question
14+
v-for="(question, index) in questions"
15+
v-bind="question"
16+
v-bind:key="'m' + index"
17+
v-model="question.model"
18+
>
19+
</question>
1420

1521
<!-- Custom content for the Complete/Submit screen slots in the FlowForm component -->
1622
<template v-slot:complete>
@@ -31,7 +37,7 @@
3137
<span class="fh2">Please wait, checking...</span>
3238
</div>
3339
<div v-else>
34-
<span class="fh2">Good news - the wheels are turning, your ticket No. {{ formatTicket(questions[2].model) }} is being processed!😉</span>
40+
<span class="fh2">Good news - the wheels are turning, your ticket No. {{ formatTicket(questions[2].model) }} is being processed!😉</span>
3541
<p class="f-description"><span>Have a great day!</span></p>
3642
</div>
3743
</div>
@@ -58,7 +64,7 @@
5864
import Question from '../../src/components/Question.vue'
5965
import LanguageModel from '../../src/models/LanguageModel'
6066
// If using the npm package, use the following line instead of the ones above.
61-
// import FlowForm, { Question, LanguageModel } from '@ditdot-dev/vue-flow-form'
67+
// import FlowForm, Question, { LanguageModel } from '@ditdot-dev/vue-flow-form'
6268
6369
export default {
6470
name: 'example',
@@ -139,7 +145,7 @@
139145
model: ''
140146
},
141147
{
142-
type: 'longText',
148+
type: 'longtext',
143149
id: "faq_no",
144150
tagline: 'Submit issue > Step 2/3',
145151
title: 'Please describe your problem.',

0 commit comments

Comments
 (0)