-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (21 loc) · 902 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
<html>
<link rel="stylesheet" type="text/css" href="dist/main.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.0.3/vue.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.15.0/lodash.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.19.0/TweenMax.min.js"></script>
<body>
<div id="app">
<transition v-on:enter="enter" v-bind:css="false" appear>
<div class="butter-cheese-eggs" v-show="true">
<div v-for="(block, index) in grid" @click="select(index)">
<block :figure.sync="block.figure" />
</div>
</div>
</transition>
<transition v-on:enter="enterWin" v-bind:css="false">
<win v-show="ended" :click-handler="restart"></win>
</transition>
</div>
</body>
<script src="dist/bundle.js"></script>
</html>