You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-8Lines changed: 9 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -65,7 +65,7 @@ $ npm install -g @vue/cli
65
65
$ yarn global add @vue/cli
66
66
```
67
67
68
-
And then create a project:
68
+
And then create a project (refer to [Vue CLI documentation](https://cli.vuejs.org/guide/) and [issue tracker](https://github.com/vuejs/vue-cli/issues) for potential problems on Windows):
69
69
70
70
```shell
71
71
$ vue create my-project
@@ -75,7 +75,7 @@ $ cd my-project
75
75
To add Vue Flow Form as a dependency to your Vue project, use the following:
76
76
77
77
```shell
78
-
npm install @ditdot-dev/vue-flow-form --save
78
+
$ npm install @ditdot-dev/vue-flow-form --save
79
79
```
80
80
81
81
And then in your App.vue file:
@@ -99,11 +99,11 @@ And then in your App.vue file:
99
99
questions: [
100
100
// QuestioModel array
101
101
newQuestionModel({
102
-
question:'...',
102
+
question:'Question',
103
103
type:QuestionType.MultipleChoice,
104
104
options: [
105
105
newChoiceOption({
106
-
label:'...'
106
+
label:'Answer'
107
107
})
108
108
]
109
109
})
@@ -121,7 +121,7 @@ And then in your App.vue file:
0 commit comments