App.vue
795 Bytes
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
<template>
<div id="app">
<counter></counter>
<p>
<button @click="increment">+</button>
<button @click="decrement">-</button>
</p>
<child :level="1">Hello world!</child>
<child :level="3">Hello world!</child>
</div>
</template>
<script>
import counter from './components/counter.vue'
import child from './components/child.vue'
import {
store
} from './main.js'
export default {
name: 'app',
data() {
return {
}
},
computed: {
count() {
return store.state.count
}
},
methods: {
increment() {
store.commit('increment')
},
decrement() {
store.commit('decrement')
}
},
components: {
counter,child
}
}
</script>