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"
|
2020-11-25 22:03:35 +01:00
|
|
|
new Vue({
|
|
|
|
|
el: '#app',
|
2021-05-01 08:42:39 +02:00
|
|
|
render: (h) => h(Index, {
|
2020-11-25 22:03:35 +01:00
|
|
|
props: {
|
2021-04-20 20:52:31 +02:00
|
|
|
gamesRunning: {{ gamesRunning|json_encode|raw }},
|
|
|
|
|
gamesFinished: {{ gamesFinished|json_encode|raw }},
|
2020-11-25 22:03:35 +01:00
|
|
|
images: {{ images|json_encode|raw }},
|
|
|
|
|
},
|
|
|
|
|
}),
|
|
|
|
|
})
|
|
|
|
|
</script>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|