Skip to content

Commit 0e61513

Browse files
authored
Update README.md
1 parent 4f33160 commit 0e61513

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,7 @@ And then in your App.vue file:
143143
HTML:
144144

145145
```html
146+
<!DOCTYPE html>
146147
<html>
147148
<head>
148149
<!-- Requires Vue version 2.6.x -->
@@ -157,9 +158,7 @@ HTML:
157158
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;900&amp;display=swap">
158159
</head>
159160
<body>
160-
<div id="app">
161-
<flow-form v-bind:questions="questions" v-bind:language="language" />
162-
</div>
161+
<div id="app"></div>
163162
<script src="app.js"></script>
164163
</body>
165164
</html>
@@ -170,6 +169,7 @@ JavaScript (content of app.js):
170169
```js
171170
var app = new Vue({
172171
el: '#app',
172+
template: '<flow-form v-bind:questions="questions" v-bind:language="language" />',
173173
data: function() {
174174
return {
175175
language: new FlowForm.LanguageModel({

0 commit comments

Comments
 (0)