[FIX] tutorial_todoapp: fix the final code mount issue

In app.js, `mount(Root, document.body, { dev: true, env });`  crash because `body` is not available yet.
Therefore, moving the script into the body fix the issue.
This commit is contained in:
Florent Dardenne - dafl@odoo
2022-09-08 11:52:24 +02:00
committed by Géry Debongnie
parent d0d7482b0f
commit a5a6a592c1
+3 -2
View File
@@ -770,10 +770,11 @@ For reference, here is the final code:
<meta charset="UTF-8" />
<title>OWL Todo App</title>
<link rel="stylesheet" href="app.css" />
</head>
<body>
<script src="owl.js"></script>
<script src="app.js"></script>
</head>
<body></body>
</body>
</html>
```