Initial commit

This commit is contained in:
Djuri 2024-06-25 01:10:40 +02:00
commit d4926709f3
19 changed files with 4423 additions and 0 deletions

23
index.html Normal file
View file

@ -0,0 +1,23 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + Vue + TS</title>
<script>
var Module = {
onRuntimeInitialized: function () {
console.log('runtime initalized');
}
};
</script>
<script src="/js/btclock_datahandler.js"></script>
</head>
<body>
<div id="dev-root"></div>
<script type="module" src="/src/dev.ts"></script>
</body>
</html>