flying-monkey/store/index.js

22 lines
377 B
JavaScript
Raw Permalink Normal View History

// 页面路径store/index.js
import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex);//vue的插件机制
//Vuex.Store 构造器选项
const store = new Vuex.Store({
state:{//存放状态
uid:'',
2022-08-16 06:35:07 +00:00
ifConnect:false
},
mutations: {
setUid(state, str) {
state.uid = str;
},
setConnect(state, str) {
state.ifConnect = str;
}
}
})
export default store