-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (26 loc) · 1.02 KB
/
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
28
29
30
31
32
33
<!DOCTYPE html>
<html>
<head>
<title>Vue English Battleship Game</title>
<link rel="stylesheet" href="/assets/css/grid-chooser.css" type="text/css">
<link rel="stylesheet" href="/assets/css/ship-placer.css" type="text/css">
<link rel="stylesheet" href="/assets/css/game.css" type="text/css">
<link rel="stylesheet" href="/assets/css/grid.css" type="text/css">
<link rel="stylesheet" href="/assets/css/footer.css" type="text/css">
</head>
<body>
<div id="game">
<Game></Game>
</div>
<footer id="footer">
<a href="https://github.com/vuejs-example-apps">Vue.js Example Apps</a> by <a href="https://gbezyuk.github.io">gbezyuk</a>
</footer>
<script src="/vendor/[email protected]"></script>
<script src="/vendor/[email protected]"></script>
<script type="text/javascript" src="/components/Grid.js"></script>
<script type="text/javascript" src="/components/Game.js"></script>
<script type="text/javascript">
new Vue({el: '#game'})
</script>
</body>
</html>