-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (34 loc) · 921 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
28
29
30
31
32
33
34
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="static/index.css">
</head>
<body>
<div id="main">
<div id="preview">
<div id="view">
<iframe v-el:iframe></iframe>
</div>
</div>
<div id="options">
<div id="pages">
<div class="page" v-show="step === 0">
<page1 v-ref:page1></page1>
</div>
<div class="page" v-show="step === 1">
<page2 v-ref:page2></page2>
</div>
<div class="page" v-show="step === 2">
<page3 v-ref:page3></page3>
</div>
</div>
<div id="buttons">
<div class="button left" @click="clickLeft">{{ buttons.left.label }}</div>
<div class="button right" @click="clickRight">{{ buttons.right.label }}</div>
</div>
</div>
</div>
<script type="text/javascript" src="static/index.js"></script>
</body>
</html>