File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -143,6 +143,7 @@ And then in your App.vue file:
143143HTML:
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& ; 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
171170var 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 ({
You can’t perform that action at this time.
0 commit comments