2026-05-14 12:40:09 +02:00

23 lines
615 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ToDo-App VueJS Beispiel</title>
</head>
<body>
<!--
Der Einstiegspunkt der Vue-App.
Vue ersetzt dieses <div id="app"> mit dem gerenderten Inhalt
der Root-Komponente (App.vue).
-->
<div id="app"></div>
<!--
Das Skript wird als ES-Modul geladen (type="module").
Vite verarbeitet src/main.js und alle importierten Dateien.
-->
<script type="module" src="/src/main.js"></script>
</body>
</html>