-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (27 loc) · 951 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
<!DOCTYPE html>
<html id="ble-console">
<head>
<title>{{title}}</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="./css/main.css" media="all">
</head>
<body>
<div class="ble-console" >
<div class="console">
<ul class="custom-ul">
<li v-repeat="logs">
<p class="log-content">{{content}}</p>
<p class="log-date">{{date}}</p>
</li>
</ul>
</div>
<div class="command">
<p id="title">{{title}}</p>
<button class="custom-btn" id="start" v-on="click: start( this )">Start</button>
<button class="custom-btn" id="clear" v-on="click: clear( this )">Clear</button>
</div>
</div>
</body>
</html>
<script type="text/javascript" src="./js/vue.min.js"></script>
<script type="text/javascript" src="./bundle.js"></script>