## 获取数据
一 访问 statle数据
~~~
this.$store.state.数据明
~~~
第二种方式
~~~
<template>
<div>
<h1> 当前cont:{{ cont }}}</h1>
<button>+1</button>
</div>
</template>
<script>
import { mapState } from 'vuex'
export default {
name: 'Add',
data () {
return {}
},
computed: {
...mapState(['cont'])
}
}
</script>
~~~