-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (47 loc) · 1.36 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>start vue</title>
<link rel="stylesheet" href="bootstrap.min.css">
</head>
<body>
<hr>
<div id="test">
<tabs>
<tab name="about one" >
<p>content of tab one</p>
</tab>
<tab name="about two" >
<p>content of tab two</p>
</tab>
<tab name="about three" >
<p>content of tab three</p>
</tab>
<tab name="about four" :selected="true">
<p>content of tab three</p>
</tab>
</tabs>
<hr>
<button type="button" @click="showmodal = true"> show modal</button>
<modal title="modal title" body=" this is a body of modal" v-if="showmodal" @close="showmodal = false"></modal>
<button @click="change">filter</button>
<h1 id="titlee" :class="{'unred': uncomplete}"><span v-if="!uncomplete">un</span>complete Task</h1>
<ul>
<li v-if="uncomplete" v-for="task in tasks" v-text="task.description"></li>
</ul>
<ul>
<li v-if="!uncomplete" v-for="task in filterToUn" v-text="task.description"></li>
</ul>
<hr>
<ul>
<task-list>
</task-list>
</ul>
</div>
<script type="text/javascript" src="vue.js"></script>
<script src="script.js"></script>
<script src="jquery.min.js"></script>
<script src="bootstrap.min.js"></script>
</body>
</html>