Adds playground

This commit is contained in:
Daniel Svitan
2024-03-04 21:44:09 +01:00
parent 180faecddf
commit 39b3d2711c
8 changed files with 169 additions and 56 deletions

View File

@@ -5,16 +5,21 @@
<link rel="icon" type="image/png" href="/binary.png"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Binary</title>
<script src="https://unpkg.com/vue@3"></script>
<script src="https://unpkg.com/vue-router@4"></script>
<style>
html, body {
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div id="app"></div>
<div id="app">
<router-view></router-view>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
<style>
html, body {
margin: 0;
padding: 0;
}
</style>