-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path7.初始化多个Vue实例对象.html
61 lines (54 loc) · 1.04 KB
/
7.初始化多个Vue实例对象.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
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>初始化多个Vue实例对象</title>
<script src="./vue/vue.js"></script>
</head>
<body>
<h1>初始化多个Vue实例对象</h1>
<div id="root-one">
<h2>{{title}}</h2>
<p>{{greet}}</p>
</div>
<div id="root-two">
<h2>{{title}}</h2>
<p>{{greet}}</p>
<button @click="changeTitle">change one's title</button>
</div>
<script>
let one = new Vue({
el: "#root-one",
data: {
title: "one的内容"
},
computed: {
greet () {
return "Hello one!"
}
},
methods: {
handleClick: function () {
this.content = "world"
}
},
})
let two = new Vue({
el: "#root-two",
data: {
title: "two的内容"
},
computed: {
greet () {
return "Hello two!"
}
},
methods: {
changeTitle () {
one.title = "略略略"
},
}
})
</script>
</body>
</html>