-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (50 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<script src='./compile.js'></script>
<script src='./lue.js'></script>
<script src='./observer.js'></script>
<script src='./watcher.js'></script>
<script src='./array.js'></script>
<title>Lue</title>
<style>
.active{
font-size: 20px;
color: blue;
}
.big-font{
font-size: 30px;
color: red;
}
</style>
</head>
<body>
<div id="app">
<input type="text" v-model="test.a">
<div>{{test.a}}</div>
<div>list: {{list}}</div>
<div v-class="className" class="init">Hello Class</div>
<button v-on:click="changeClass">Button</button>
</div>
<script>
var lue = new Lue ({
el: '#app',
data: {
className: 'active',
list: [1, 2, 3],
test: {
a: 1
}
},
methods: {
changeClass() {
this.className = 'big-font'
}
}
})
</script>
</body>
</html>