-
Notifications
You must be signed in to change notification settings - Fork 42
/
index.html
27 lines (27 loc) · 836 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>2048 | Vue</title>
</head>
<body>
<div class="text">
<p>
This is a clone of
<a href="https://github.com/IvanVergiliev/2048-react">2048-react</a>.
What I do is re-implementing it using
<a href="https://cn.vuejs.org/">Vue 3</a> +
<a href="https://github.com/vitejs/vite/">Vite</a> and
<a href="http://sass-lang.com/">SASS</a>.
</p>
<p>
You can check out the source code
<a href="https://github.com/pengfu/vue-2048">here</a>.
</p>
</div>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>