1 怎么使用vuex
安装等等 然后下载vuex模板 store文件 里面包含 state.js action.js mutation.js getter.js index.js
在main.js中引入index.js
import store from './store/index.js'/*
new Vue({ el: '#app', router, store, components: { App }, template: ''
})
然后页面上 引入 import {mapGetters, mapActions} from 'vuex'
需要修改什么数据,在methods中通过mapActions提交对应的事件
在action里面进行修改
action 通过commit提交到mutation
state.js中定义对应数据并初始化
getter.js中抛出对应的数据
页面上如何使用?