标签:异步操作 基本使用 def code 文件 index src mod 状态
npm install vue
src目录下创建store/index.js
//index.js
import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex)
export default new Vuex.Store({
state: {
},
mutations: {
},
actions: {
},
modules: {
}
})
入口文件main.js引入store
//main.js
import Vue from 'vue'
import store from './store'
new Vue({
store,
render: h => h(App)
}).$mount('#app')
state:全局状态数据
getters:相当与computed
mutations:规定只有mutation才能修改state,通过commit方法触发
actions:异步操作,通过dispatch触发mutation
标签:异步操作 基本使用 def code 文件 index src mod 状态
原文地址:https://www.cnblogs.com/zhaoyifeng/p/12393237.html