2020-11-25 22:03:35 +01:00
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<link rel="stylesheet" href="/style.css" />
|
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/vue@2.6.11"></script>
|
2020-12-03 21:42:25 +01:00
|
|
|
<title>🧩 jigsaw.hyottoko.club</title>
|
2020-11-25 22:03:35 +01:00
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div id="app"></div>
|
|
|
|
|
<script type="module">
|
2021-05-01 08:42:39 +02:00
|
|
|
import Index from "/views/Index.vue.js"
|
2021-05-01 08:51:52 +02:00
|
|
|
new Vue({ el: '#app', render: (h) => h(Index) })
|
2020-11-25 22:03:35 +01:00
|
|
|
</script>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|