2020-11-25 22:03:35 +01:00
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<link rel="stylesheet" href="/style.css" />
|
2021-05-13 16:23:05 +02:00
|
|
|
<script src="https://unpkg.com/vue@3.0.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-13 16:23:05 +02:00
|
|
|
const app = Vue.createApp(Index)
|
|
|
|
|
app.mount('#app')
|
2020-11-25 22:03:35 +01:00
|
|
|
</script>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|