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
| <script>
| import {mapState} from "vuex";
|
| export default {
| name: "home",
| data() {
| return {
| num: 0
| }
| },
| methods: {
| add() {
| this.num++;
| }
| },
| computed: {
| ...mapState({
| cachedViews: state => state.tagsView.cachedViews
| }),
| }
| }
| </script>
|
| <template>
| <div>
| 首页
| <div>{{num}} <el-button @click="add"></el-button></div>
| {{cachedViews}}
| </div>
| </template>
|
| <style scoped lang="less">
|
| </style>
|
|