import Vue from 'vue' import Vuex from 'vuex' Vue.use(Vuex) const store = new Vuex.Store({ state: { isLogin: false, luyou:1, userInfo: {}, nCount:0, api: 'https://pbl.cocorobo.cn/api/pbl/', // api: 'http://localhost:7003/pbl/', }, mutations: { update(state, [key, value]) { state[key] = value; }, } }) export default store