widget/public/index.html
2024-06-25 01:10:40 +02:00

25 lines
No EOL
545 B
HTML

<!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>Widget test</title>
<script src="https://cdn.jsdelivr.net/npm/vue@3"></script>
<link rel="stylesheet" href="style.css">
<script src="/js/btclock_datahandler.js"></script>
</head>
<body>
<script src="btclock-widget.umd.js"></script>
<script>
// Mount the widget
window.mountWidget();
</script>
</body>
</html>