This repository has been archived on 2023-03-02. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
betaseries-timeline-graph/index.html
2023-02-10 08:02:12 +01:00

29 lines
930 B
HTML

<!DOCTYPE html>
<!--suppress JSUnresolvedFunction -->
<html lang="en">
<head>
<title>BetaSeries timeline graph</title>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="darkreader-lock">
<script type="module">
import { createApp } from 'https://cdn.jsdelivr.net/npm/vue@3.2.11/dist/vue.esm-browser.js';
import { createMyApp } from './src/app.js';
const app = createMyApp({ createApp });
document.addEventListener('DOMContentLoaded', () => app.mount('.App'));
</script>
<style>
@import 'https://cdn.jsdelivr.net/npm/destyle.css@3.0.2/destyle.min.css';
:root {
color-scheme: dark;
}
body {
height: 100vh;
}
</style>
</head>
<body class="App"></body>
</html>