App.vue
1.16 KB
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
50
51
52
53
54
55
<template>
<div id="app">
<counter></counter>
<div class="">
{{isLogin}}
</div>
<p>
<button @click="increment">+</button>
<button @click="decrement">-</button>
<button @click="login">login</button>
</p>
<child :level="1">Hello world!</child>
<child :level="3">Hello world!</child>
<my-paragraph></my-paragraph>
<getters></getters>
</div>
</template>
<script>
import counter from './components/counter.vue'
import child from './components/child.vue'
import myParagraph from './components/myParagraph.vue'
import getters from './components/getters.vue'
export default {
name: 'app',
data() {
return {
}
},
computed: {
count() {
return this.$store.state.count
},
isLogin() {
return this.$store.state.isLogin
}
},
methods: {
increment() {
this.$store.commit('increment')
},
decrement() {
this.$store.commit('decrement')
},
login() {
this.$store.commit('login')
}
},
components: {
counter,child,myParagraph,getters
}
}
</script>