Vuex 数据管理详解
#vuex
这是vuex的工作原理图。
vue2使用vuex3,vue3使用vuex4.
vuex其实是存储在store中。也就是actions,mutations,state都是在store中的。
主要流程。
- 安装vuex然后再src目录下,新建一个store目录,然后再store目录下新建一个index.js。
1
2//vue2中需要使用vuex3
npm i vuex@3
其中写以下模板内容。1
2
3
4
5
6
7
8
9
10
11
12
13
14import 'Vue' from 'uue'
import 'Vuex' from 'uuex'
//再编译Vuex前必须先通过Vue使用Vuex。然后他会自动检测到Vuex的内容。并绑定到Vue的内部。
Vue.use(Vuex)
const actions = {}
const mutations ={}
const state = {}
const store = new Vuex.Store({
actions,
mutations,
state,
})
export default store
然后再main.js中直接引入store 既可以让所有的vc,vm都能够访问到Vuex
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来源 小贺同学的blog!
评论