This commit is contained in:
2020-09-23 17:54:42 -05:00
commit 7110d73ea6
13 changed files with 12881 additions and 0 deletions

17
index.html Normal file
View File

@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='utf-8' />
<title>Snake</title>
<link rel="stylesheet" href="./src/style/css.css" />
</head>
<body>
<div id="vuewrapper">
<top-comp></top-comp>
</div>
<script src='./lib/vue.js'></script>
<script src='./lib/vuetranslit.js' type='module'></script>
<script src='./src/main.js' type='module'></script>
</body>
</html>