-
Notifications
You must be signed in to change notification settings - Fork 18
/
index.html
49 lines (48 loc) · 1.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>014 - 双向数据绑定 - 输入框绑定(v-modal)</title>
<link rel="stylesheet" href="./index.css" />
<script src="index.js"></script>
</head>
<body>
<div id="app" class="floor-1">
<!-- 第一层模板数据 -->
{{ message1 }} {{ doIt1 }}
<div class="floor-2">
<!-- 第二层模板数据 -->
{{ message2 }} {{ doIt2 }}
<div class="floor-3">
<!-- 第三层模板数据 -->
{{ message3 }} {{ doIt3 }}
</div>
</div>
{{ sayGoodBye }}
<h2>v-modal</h2>
<input type="text" v-modal="myName">—— {{ myName }}
</div>
<script>
// 数据驱动
const vm = new Vue({
el: '#app',
data: {
message1: 'Hello jsliang!',
message2: 'Hello 梁峻荣!',
message3: 'Hello 小梁!',
doIt1: '让我们荡起双桨~',
doIt2: '勇往直前~',
doIt3: '直到胜利~',
sayGoodBye: '玩得高兴,下次再见!',
myName: 'jsliang',
},
});
setTimeout(() => {
vm._data.message1 = '1234567890';
vm._data.doIt1 = '0987654321';
console.log('一秒后 data:', vm._data);
}, 1000);
</script>
</body>
</html>