puzzle/public/index.html
2021-05-01 08:51:52 +02:00

14 lines
353 B
HTML

<html>
<head>
<link rel="stylesheet" href="/style.css" />
<script src="https://cdn.jsdelivr.net/npm/vue@2.6.11"></script>
<title>🧩 jigsaw.hyottoko.club</title>
</head>
<body>
<div id="app"></div>
<script type="module">
import Index from "/views/Index.vue.js"
new Vue({ el: '#app', render: (h) => h(Index) })
</script>
</body>
</html>