-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtodos.html
43 lines (43 loc) · 978 Bytes
/
todos.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HelloVue Todo Tutorial</title>
<style>
.empty {
border-color: red;
}
</style>
</head>
<body>
<div id="app">
<input type="text"
v-bind:class='{empty: !count}'
v-model="value">
<input type="button" value="发送" v-on:click="send"/>
<div>value 的值是:{{ value }}</div>
<!-- 引用 count -->
<div>字数:{{ count }}</div>
</div>
</body>
<script src="https://cdn.bootcss.com/vue/2.5.16/vue.js"></script>
<script>
var app = new Vue({
el: '#app',
data: function () {
return {value: ''}
},
methods: {
send: function () {
alert('发送成功!');
this.value = ''
}
},
computed: {
count: function () {
return this.value.length
}
}
})
</script>
</html>