-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample-2.html
47 lines (41 loc) · 1.12 KB
/
example-2.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
<!DOCTYPE html>
<html>
<head>
<title>Example 2</title>
</head>
<body>
<div id="app">
{{ message }}
<todo-item v-for="todo in todos" v-bind:todo="todo" v-bind:key="todo.id"></todo-item>
</div>
<!-- development version, includes helpful console warnings -->
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<script type="text/javascript">
var todoItem = Vue.component('todo-item', {
props: ['todo'],
template: `
<li>
<input type="checkbox" v-model="todo.completed">
{{ todo.title }}
</li>`
})
var vm = {
el: '#app',
data: {
message: 'Hello Vue!',
todos: [{
id: 1,
title: 'go shopping',
completed: true
},
{
id: 2,
title: 'sport training'
}
]
}
}
var app = new Vue(vm)
</script>
</body>
</html>