1.在src目录下创建一个store文件夹,在创建一个index.js
2.在main.js里面 import store from ‘./store/index.js’
将store注入进(为了使每个页面可以使用this.$store去调用到store里面的信息)new Vue({
store
})
3.例如一个点击事件来实现数量的加减案例
4.使用mutations来实现
5.在使用组件的页面添加的button事件
6.组件页面使用methods来实现修改(将store里面的decrement递减方法传进来)
Vuex(点击事件加减案列)的使用
最新推荐文章于 2024-10-04 17:04:29 发布