-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path6-vue.html
37 lines (35 loc) · 850 Bytes
/
6-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
<div id="try">
<hitle
v-for="p in posts"
v-bind:title="p"
></hitle>
<button-counter></button-counter>
<button-counter></button-counter>
<button-counter></button-counter>
<button-counter></button-counter>
</div>
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
<script>
Vue.component('button-counter', {
data: function () {
return {
count: 0
}
},
template: '<button @click="count++">Clicked {{count}} times</button>'
})
</script>
<script>
Vue.component('hitle', {
props: ['title'],
template: '<h1>{{title}}</h1>'
})
</script>
<script>
var vm = new Vue({
el: "#try",
data: {
posts: ['First', 'Second', 'Third']
}
})
</script>