应用于大型项目,小页面没必要使用,主要应用于数据管理
在main.js注册
import store from ‘/store‘
new Vue({
store//全局注册store ,在vue任意组件内通过this.$store访问vuex
})
在store文件夹加中,创建index.js
在index.js中引入vuex
import Vue from ‘vue‘
import Vuex from ‘vuex‘
Vue.use(Vuex)
let store=new Vuex.Store({
state(){},
mutations(){},
actions(){},
getters(){}
})
原文:https://www.cnblogs.com/aaaaap/p/13904198.html