puzzle/public/index.html
2021-05-13 16:23:05 +02:00

15 lines
346 B
HTML

<html>
<head>
<link rel="stylesheet" href="/style.css" />
<script src="https://unpkg.com/vue@3.0.11"></script>
<title>🧩 jigsaw.hyottoko.club</title>
</head>
<body>
<div id="app"></div>
<script type="module">
import Index from "/views/Index.vue.js"
const app = Vue.createApp(Index)
app.mount('#app')
</script>
</body>
</html>